@include('layouts.header')
@if($cart->isEmpty())

Your Cart Is Empty...

@else
My Cart
@foreach($cart as $key => $item)
@csrf @method('PUT')

{{ $item->product->name ?? '' }}

Size: {{ ucwords($item->size ?? '') }}
Color: {{ ucwords($item->color ?? '') }}
Seller: RetailNet
@if($item->quantity >= $item->stock)
Sorry, stock is not available right now. You can't add more!
@endif

Delivery by 2 PM, Tomorrow | Free₹70

₹{{ $item->price ?? '' }} X {{ $item->quantity ?? 1 }} ₹{{ $item->sub_total ?? '' }}
@endforeach @if($msg != '')
Error! {{ $msg }}
@endif
@endif
@include('layouts.footer')