@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif

Shopping Cart

Review your items before checkout

@if(!empty($cart) && count($cart) > 0)

Cart Items ({{ count($cart) }})

@foreach($cart as $productId => $item)
@if($item['image']) {{ $item['product_name'] }} @else @endif

{{ $item['product_name'] }}

{{ $item['supplier_name'] }}

Code: {{ $item['product_code'] }}

₹{{ number_format($item['price'], 2) }} per {{ $item['unit'] }}

@csrf {{ $item['unit'] }}

₹{{ number_format($item['price'] * $item['quantity'], 2) }}

@csrf
@endforeach

Order Summary

Items ({{ count($cart) }}) ₹{{ number_format($cartTotal, 2) }}
Shipping Calculated at checkout
Total ₹{{ number_format($cartTotal, 2) }}
Continue Shopping

Need Help?

Call us: +91-1234567890

Email: support@textileagency.com

@else

Your cart is empty

Add some products to your cart to get started.

Start Shopping
@endif