@extends('layouts.admin') @section('title', 'Detail Pesanan') @section('page-title', 'Detail Pesanan #' . $order->order_number) @section('admin_content')
{{ $order->customer_name }}
{{ $order->customer_phone ?? '-' }}
{{ $order->shipping_address ?? $order->customer_address ?? '-' }}
{{ $order->shipping_courier ?? '-' }}
{{ $order->shipping_service ?? '-' }}
| Produk | Qty | Harga | Total |
|---|---|---|---|
| {{ $item->product_name }} | {{ $item->quantity }} | Rp {{ number_format($item->price, 0, ',', '.') }} | Rp {{ number_format($item->total, 0, ',', '.') }} |