{{ __('Cart') }}

@if(empty($lines))
{{ __('Your cart is empty.') }}
@else
@if(!empty($belowMin) && $belowMin) Minimum order subtotal is ₦{{ number_format((float)$minSubtotal, 2) }}. @endif @if(!empty($atCapacity) && $atCapacity) We are currently at capacity. You may experience longer prep times. @endif
@foreach($lines as $line)
{{ $line['dish']->name }}
₦{{ number_format((float)$line['dish']->price, 2) }}
@csrf
@csrf
₦{{ number_format((float)$line['lineTotal'], 2) }}
@endforeach
{{ __('Subtotal') }}: ₦{{ number_format((float)$subtotal, 2) }}
@csrf
{{ __('Checkout') }}
@endif