@extends('storefront.layout') @section('title', 'Cart — ' . $sfStore->name) @section('content')

Your cart

Continue shopping
@if(empty($lines))

Your cart is empty

Browse the catalog and tap Add to cart on any item.

@else
@foreach($lines as $row) @php $p = $row['product']; @endphp @endforeach
Product Price Qty Line
{{ $p->name }} {{ format_currency($row['unit']) }} {{ $row['qty'] }} {{ format_currency($row['line']) }}
@csrf

Subtotal {{ format_currency($subtotal) }}

Guest cart for reference. Checkout in store or contact us to complete your order.

@endif @endsection