{{ $order->created_at->format('d/m/Y H:i') }}
{{ $order->cliente_nome }}
{{ $order->cliente_nif }}
{{ $order->cliente_telefone }}
{{ $order->cliente_endereco }}
| Produto | Qtd | Preço | Total |
|---|---|---|---|
| {{ $item->product->name ?? 'Produto removido' }} | {{ $item->quantity }} | {{ number_format($item->price,0,',','.') }} Kz | {{ number_format($item->subtotal,0,',','.') }} Kz |
| Nenhum item encontrado | |||
| Total | {{ number_format($order->total,0,',','.') }} Kz | ||