Sipariş #{{ $order->order_number }}

{{ $order->created_at->format('d F Y, H:i') }}
Mevcut Durum
{{ $order->status }}
@csrf @method('PUT')
Sipariş Kalemleri
@foreach($order->items as $item) @endforeach
Ürün Adet Tutar
{{ $item->product_name }}
@if($item->variant_info)
{{ $item->variant_info }}
@endif
SKU: {{ $item->product->sku ?? '-' }}
x{{ $item->quantity }} ₺{{ number_format($item->total, 2) }}
Ara Toplam: ₺{{ number_format($order->total_amount, 2) }}
Kargo: ₺0.00
Genel Toplam: ₺{{ number_format($order->total_amount, 2) }}

Müşteri Bilgileri

{{ substr($order->customer_name, 0, 1) }}
{{ $order->customer_name }}
Müşteri ID: #{{ $order->user_id }}
{{ $order->customer_email }}
{{ $order->customer_phone ?? '-' }}

Teslimat Adresi

{{ $order->shipping_address }}

Kargo Takip

@csrf @method('PUT')