Da natureza para a mesa!
{{ $settings->address }}
{{ $settings->postal_code }} {{ $settings->city }}
NIF: {{ $settings->nif }} | Tel: {{ $settings->phone }}
Nº: {{ $order->order_number }}
Data: {{ $order->created_at->format('d/m/Y H:i') }}
{{ $order->customer_name }}
{{ $order->customer_email }} | {{ $order->customer_phone }}
@if($order->customer_nif)NIF: {{ $order->customer_nif }}
@endif @if($order->shipping_method === 'delivery'){{ $order->address }}, {{ $order->postal_code }} {{ $order->city }}
@elseLevantamento na loja
@endif| Produto | Qtd. | Preço | Total |
|---|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} {{ $item->unit_label }} | {{ number_format($item->unit_price, 2, ',', '.') }} € | {{ number_format($item->total, 2, ',', '.') }} € |
Subtotal: {{ number_format($order->subtotal, 2, ',', '.') }} €
Portes: {{ number_format($order->shipping_cost, 2, ',', '.') }} €
Total: {{ number_format($order->total, 2, ',', '.') }} €
Pagamento: {{ $order->payment_method_label }} — {{ ucfirst($order->payment_status) }}