| Sipariş Tarihi: | {{ $order->created_at->format('d.m.Y H:i') }} | Durum: | {{ $order->getStatusTitle() }} |
|---|---|---|---|
| Müşteri Adı: | {{ $order->customer_name }} | Ödeme Durumu: | {{ $order->getPaymentStatusTitle() }} |
| E-posta: | {{ $order->customer_email }} | Ödeme Yöntemi: | {{ $order->payment_method ?? 'Belirtilmemiş' }} |
| Telefon: | {{ $order->customer_phone }} | Teslimat Adresi: | {{ $order->shipping_address }} |
| İl: | {{ $order->city->name }} | İlçe: | {{ $order->district->name }} |
| Ürün | Birim Fiyat | Adet | Ağırlık | Ara Toplam |
|---|---|---|---|---|
|
{{ $item->product_name }}
@if($item->notes)
{{ $item->notes }} @endif |
₺{{ number_format($item->unit_price, 2) }} | {{ $item->quantity }} | {{ $item->weight }} KG | ₺{{ number_format($item->subtotal, 2) }} |
| Ara Toplam: | ₺{{ number_format($order->subtotal, 2) }} |
|---|---|
| Teslimat Ücreti: | ₺{{ number_format($order->delivery_cost, 2) }} |
| Toplam: | ₺{{ number_format($order->total, 2) }} |