@extends('admin.layouts.app') @section('title', 'Order Details - ' . $order->order_number) @section('header', 'Order Details') @section('content')
Created on {{ $order->created_at->format('d M Y, H:i') }}
| Product | Quantity | Unit Price | Weight | Total |
|---|---|---|---|---|
|
{{ $item->product->name ?? 'Product not found' }}
@if ($item->special_instructions)
Special:
{{ $item->special_instructions }}
@endif
|
{{ $item->quantity }} | Rp {{ number_format($item->unit_price, 0, ',', '.') }} | {{ number_format($item->total_weight, 2) }} kg | Rp {{ number_format($item->total_price, 0, ',', '.') }} |
| Subtotal: | Rp {{ number_format($order->subtotal, 0, ',', '.') }} | |||
| Total Weight: | {{ number_format($order->total_weight, 2) }} kg | |||
| Total Amount: | Rp {{ number_format($order->total_amount, 0, ',', '.') }} | |||
{{ $order->customer_name }}
{{ $order->customer_phone }}
{{ $order->customer_email }}
{{ $order->customer_address }}
{{ $order->notes }}