@extends('shop.layout') @section('title', __('portal.shop.checkout_title')) @section('content') @php $currency = $tenant->settings['currency'] ?? 'MDL'; $labels = \App\Models\Tenant\OnlineOrder::DELIVERY; @endphp

{{ __('portal.shop.checkout_title') }}

@if ($errors->any())
@endif
@csrf

{{ __('portal.shop.summary') }}

@foreach ($cart as $item) @endforeach
{{ $item['name'] }} ×{{ $item['qty'] }} {{ number_format($item['price'] * $item['qty'], 2) }}
{{ number_format($subtotal, 2) }} {{ $currency }}

{{ __('portal.shop.delivery_fee_note') }}

@endsection