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

Finalizează comanda

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

Sumar

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

Taxa de livrare se calculează în funcție de metoda aleasă.

@endsection