@if(session('success'))
✓ {{ session('success') }}
@endif
@if(session('error'))
⚠ {{ session('error') }}
@endif
@if($cart && count($cart) > 0)
@foreach($cart as $id => $item)
@if($item['media'])
@if($item['media_type'] == 'video')
@else
![{{ $item['name'] }}]({{ asset($item['media']) }})
@endif
@else
🛍️
@endif
{{ $item['name'] }}
Digital Item
₹{{ number_format($item['price'], 2) }}
₹{{ number_format($item['price'] * $item['quantity'], 2) }}
@endforeach
Total Amount:
₹{{ number_format($total, 2) }}
@else
🛒
Your Cart is Empty
Looks like you haven't added anything to your cart yet.
Browse Store Now
@endif
@endsection