@extends('admin.layouts.app') @section('title', 'Pesanan #'.$order->order_number) @section('content')
| Produk | Harga | Qty | Varian | Subtotal |
|---|---|---|---|---|
| {{ $item->product_name }} | Rp {{ number_format($item->product_price, 0, ',', '.') }} | {{ $item->qty }} | @if($item->size) Uk: {{ $item->size }} @endif @if($item->color) / {{ explode('|', $item->color)[1] ?? $item->color }} @endif | Rp {{ number_format($item->subtotal, 0, ',', '.') }} |
Belum ada data pengiriman.
@endif @if($order->notes){{ $order->notes }}