@extends('layouts.main') @section('content')
Sipariş No: {{ $order->order_number }}
Tarih: {{ $order->created_at->format('d.m.Y H:i') }}
Durum: {{ $order->getStatusTitle() }}
Sipariş Notu: {{ $order->notes }}
Ad Soyad: {{ $order->customer_name }}
Telefon: {{ $order->customer_phone }}
Adres: {{ $order->shipping_address }}
| Ürün | Birim Fiyat | Adet | Ağırlık | Toplam |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ number_format($item->unit_price, 2) }} ₺ | {{ $item->quantity }} | {{ $item->weight }} KG | {{ number_format($item->subtotal, 2) }} ₺ |