@extends('layouts.frontend') @section('title', 'উইশলিস্ট - ' . \App\Models\Setting::get('site_name', config('app.name'))) @section('content')
@include('frontend.customer.partials.sidebar')

আমার উইশলিস্ট

@if($wishlist->count() > 0)
@foreach($wishlist as $item) @if($item->product)
@include('frontend.partials.product-card', ['product' => $item->product])
@csrf @method('DELETE')
@endif @endforeach
{{ $wishlist->links() }}
@else

আপনার উইশলিস্ট খালি!

পছন্দের পণ্যগুলো উইশলিস্টে সেভ করুন।

পণ্য দেখুন
@endif
@endsection