@extends('admin.layouts.app') @section('title', 'Order #' . $order->id) @section('content')
| Product | Price | Qty | Total |
|---|---|---|---|
|
{{ $item->product_name }} @if($item->color || $item->size)@if($item->color) Color: {{ $item->color }} @endif @if($item->size) | Size: {{ $item->size }} @endif @endif |
৳{{ number_format($item->price) }} | {{ $item->quantity }} | ৳{{ number_format($item->price * $item->quantity) }} |
{{ $comment->comment }}
No notes yet
@endforelse{{ $order->shipping_name }}
{{ $order->customer?->orders()->count() ?? 1 }} orders
Sent to {{ ucfirst($order->courier ?? 'courier') }}
Tracking: {{ $order->tracking_id }}
No couriers enabled. Enable couriers in Settings.
@endforelse