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