Merhaba {{ $order->user->name }},
Siparişiniz başarıyla oluşturuldu ve incelemeye alındı.
Sipariş Detayları
Sipariş No: {{ $order->code }}
Tarih: {{ $order->created_at->format('d.m.Y H:i') }}
Durum: {{ $order->status }}
| Ürün | Miktar | Birim Fiyat | Toplam |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->qty }} | ₺{{ number_format($item->unit_price, 2, ',', '.') }} | ₺{{ number_format($item->line_total, 2, ',', '.') }} |
Genel Toplam: ₺{{ number_format($order->total, 2, ',', '.') }}