@extends('layouts.shop') @section('title', 'Shopping Cart') @section('content')

Shopping Cart

@if(empty($cart))

Your cart is empty

Looks like you haven't added any products yet. Explore our collection!

Browse Products
@else
@foreach($cart as $cartKey => $details)
{{ $details['name'] }}

{{ $details['name'] }}

@if(!empty($details['selected_size'])) {{ $details['selected_size'] }} @endif @if(!empty($details['selected_color'])) {{ $details['selected_color'] }} @endif
৳{{ number_format($details['price'], 0) }}
{{ $details['quantity'] }}
৳{{ number_format($details['price'] * $details['quantity'], 0) }}
@endforeach

Order Summary

Subtotal ৳{{ number_format($total, 0) }}
Shipping Fee ৳{{ number_format($shipping, 0) }}
Total ৳{{ number_format($grandTotal, 0) }}
@endif
@endsection @section('scripts') @endsection