@extends('themes.cloth.layouts.master') @section('title', 'Shopping Cart') @section('content')

আপনার কার্ট

@php $cart = $cart ?? \App\Services\ThemeCartService::get(); @endphp @if(empty($cart))

কার্ট খালি আছে

কেনাকাটা শুরু করুন
@else
@foreach($cart as $key => $item) @endforeach
পণ্য দাম পরিমাণ মোট
@if($item['thumbnail']) @endif {{ $item['name'] }} @if($item['size'])
Size: {{ $item['size'] }}@endif
৳{{ number_format($item['price']) }} ৳{{ number_format($item['price'] * $item['qty']) }}
অর্ডার সামারি
@php $subtotal = collect($cart)->sum(fn($i) => $i['price'] * $i['qty']); @endphp
Subtotal৳{{ number_format($subtotal) }}
Shippingচেকআউটে নির্বাচন করুন

Total৳{{ number_format($subtotal) }}
চেকআউট
@endif
@endsection @include('themes.shared.cart-page-scripts')