@extends('layouts.app') @section('title', 'Your Cart') @section('content')

Shopping cart

@forelse ($items as $item)
{{ $item['name'] }}
{{ $item['sku'] }}
@money($item['unit_price'])
@if(($item['type'] ?? 'product') === 'gift_card')
@csrf @method('PATCH')
@else
@csrf @method('PATCH')
@endif
@money($item['line_total'])
@if(($item['type'] ?? 'product') === 'gift_card')
@csrf @method('DELETE')
@else
@csrf @method('DELETE')
@endif
@empty
Your cart is empty.
@endforelse
Subtotal: @money($subtotal)
Proceed to checkout
@endsection