@include('layouts.header') @include('layouts.tostMessage') {{-- Main content --}}
@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) Product Image @else No Image @endif
{{ $item->product->name }} ${{ $item->product->price }} {{ $item->size }}
${{ $item->product->price * $item->quantity }}

Cart Totals

Subtotal:
$0.00
Shipping:
$0.00
Total:
$0.00
Proceed to Checkout
@include('layouts.footer')