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

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

@auth('customer') @else লগইন করুন আপনার উইশলিস্ট সেভ রাখতে। @endauth

@if($products->count() > 0)
@foreach($products as $product)
@include('frontend.partials.product-card', ['product' => $product])
@endforeach
@else

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

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

পণ্য দেখুন
@endif
@push('scripts') @endpush @endsection