@extends('layouts.buyer') @section('title', 'My Favorites') @section('buyer-content') @if($favorites->count() > 0)
@foreach($favorites as $favorite)
{{ $favorite->product->name }}
@csrf @method('DELETE')
@if($favorite->product->seller)
{{ Str::limit($favorite->product->seller->company_name, 20) }}
@endif
{{ $favorite->product->name }}
₹{{ number_format($favorite->product->price, 0) }} / unit
@if($favorite->product->moq) MOQ: {{ $favorite->product->moq }} @endif
@endforeach
@if($favorites->hasPages())
{{ $favorites->links() }}
@endif @else
No Favorites Yet

Start browsing products and save your favorites for quick access.

Browse Products
@endif @endsection