|
Billed To
{{ $order->customer->name }}
@if($order->customer->phone) {{ $order->customer->phone }}
@endif @if($order->order_type === 'college' && $order->college) {{ $order->college->name }} @if($order->faculty) {{ $order->faculty->name }} @endif @endif |
Order Details
Order #:
{{ $order->order_number }}
Date:
{{ $order->created_at->format('M d, Y') }}
Due Date:
{{ \Carbon\Carbon::parse($order->deadline)->format('M d, Y') }}
|
| Garment | Description | Qty | Unit Price | Total |
|---|---|---|---|---|
|
{{ $item->garment_type }}
|
{{ $item->description ?: '-' }}
|
{{ $item->quantity }} | Rs. {{ number_format($item->unit_price, 2) }} | Rs. {{ number_format($item->quantity * $item->unit_price, 2) }} |
| Subtotal | Rs. {{ number_format($order->total_amount, 2) }} | ||
| Paid Amount | Rs. {{ number_format($order->paid_amount, 2) }} | ||
|
|||