@extends('layouts.frontend') @section('title', 'শপিং কার্ট - ' . \App\Models\Setting::get('site_name', config('app.name'))) @section('content')

🛒 শপিং কার্ট @if(count($cart) > 0) ({{ count($cart) }}টি পণ্য) @endif

@if(count($cart) > 0)
@foreach($cart as $key => $item)
{{ $item['name'] }}
{{ $item['name'] }} @if($item['color'] || $item['size'])

@if($item['color']) রঙ: {{ $item['color'] }} @endif @if($item['size']) | সাইজ: {{ $item['size'] }} @endif

@endif

৳{{ number_format($item['price'], 0) }}

@csrf @method('PATCH')
@csrf @method('DELETE')
@endforeach

অর্ডার সারাংশ

@if($appliedCoupon)
{{ $appliedCoupon['code'] }}

কুপন প্রয়োগ হয়েছে

@csrf @method('DELETE')
@else
@csrf
@endif
সাবটোটাল ৳{{ number_format($subtotal, 0) }}
@if($discount > 0)
ডিসকাউন্ট -৳{{ number_format($discount, 0) }}
@endif
ডেলিভারি চার্জ চেকআউটে হিসাব হবে
সর্বমোট ৳{{ number_format($subtotal - $discount, 0) }}
চেকআউট করুন শপিং চালিয়ে যান
নিরাপদ পেমেন্ট
১০০% অরিজিনাল
@else

আপনার কার্ট খালি!

এখনো কোনো পণ্য যোগ করা হয়নি। আমাদের সেরা পণ্যগুলো দেখুন।

শপিং শুরু করুন
@endif
@endsection