@extends('admin.layout') @section('title', 'Detail Pesanan') @section('content')
| No. Pesanan: | {{ $order->order_number }} |
| Tanggal: | {{ $order->created_at->format('d F Y, H:i') }} |
| Status: | {{ ucfirst($order->status) }} |
| Total: | {{ $order->formatted_total }} |
| Pembayaran: | {{ ucfirst($order->payment_status) }} |
| Metode: | {{ $order->payment_method }} |
| Catatan: | {{ $order->notes }} |
| Produk | Harga | Qty | Subtotal |
|---|---|---|---|
|
{{ $item->product_name }}
@if($item->product)
SKU: {{ $item->product->sku ?? 'N/A' }} @endif |
{{ $item->formatted_price }} | {{ $item->quantity }} | {{ $item->formatted_subtotal }} |
| Total Pesanan | {{ $order->formatted_total }} | ||