@include('layouts.header') @include('layouts.tostMessage') {{-- Main content --}}
Home
Shopping Cart
@foreach ($cartItems as $item) @php $imagePaths = explode(',', $item->product->images); $firstImage = count($imagePaths) > 0 ? $imagePaths[0] : null; @endphp @endforeach
Product
Price
Size
Quantity
Total
@if ($firstImage)
@else
No Image
@endif
{{ $item->product->name }}
${{ $item->product->price }}
{{ $item->size }}
${{ $item->product->price * $item->quantity }}
Delete
Cart Totals
Subtotal:
$0.00
Shipping:
$0.00
Total:
$0.00
Proceed to Checkout
@include('layouts.footer')