@extends('layouts.app') @section('content')

Your Cart

@if($items->isEmpty())

Your cart is empty.

@else
@foreach($items as $item)
{{ $item->getBuyable()->name ?? 'Product' }}
@csrf @method('DELETE')
@csrf @method('PATCH')
Price: ${{ number_format($item->price, 2) }}
Total: ${{ number_format($item->total(), 2) }}
@endforeach
Total: ${{ number_format($total, 2) }}
Checkout
@endif
@push('scripts') @endpush @endsection