Kathmandu, Nepal | +977 9800000000
Official Receipt
{{ $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 #: {{ $order->order_number }}
Date: {{ $order->created_at->format('M d, Y') }}
Due Date: {{ \Carbon\Carbon::parse($order->deadline)->format('M d, Y') }}
@foreach($order->items as $item) @endforeach
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) }}
Balance Due Rs. {{ number_format(max(0, $order->total_amount - $order->paid_amount), 2) }}
Thank you for your business!