| کسٹمر اور ڈیلیوری کی معلومات | |||
| تاریخ | {{ date('d-M-Y',strtotime($order->order_date)) }} | وقت | {{ date('h:i A',strtotime($order->order_date)) }} |
|---|---|---|---|
| گاہک | {{ $order->Customer->urdu_name ?: $order->Customer->name }} | موبائل | {{ $order->Customer->phone }} |
| دوسرا نمبر | {{ $order->Customer->phone2 ?? '-' }} | ادائیگی | {{ $order->payment_status }} |
| پتہ | {{ $order->Customer->urdu_address ?: $order->Customer->address }} | ||
| نمبر | سامان کی تفصیل | تعداد | ریٹ | رعایت | کل رقم |
|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $item->Product->name_urdu ?? $item->Product->name }}
@if($item->product->category==2)
({{$item->days}} یوم)
@endif
@if($item->description)
{{ $item->description }} @endif |
{{ $item->qty }} | {{ number_format($item->price,2) }} | @if($item->product->category==2) {{ number_format(($item->discount/$item->days)/$item->qty,2) }} @else {{ number_format($item->discount/$item->qty,2) }} @endif | {{ number_format($item->total,2) }} |
| اخراجات کی تفصیل | |
|---|---|
| ذیلی رقم | {{ number_format($order->subtotal,2) }} |
| کرایہ آمدرفت | {{ number_format($order->carriage,2) }} |
| ادائیگی کی تفصیل | |
|---|---|
| کل رقم | {{ number_format($order->grand_total,2) }} |
| ایڈوانس | {{ number_format($order->paid_amount,2) }} |
| بقایا رقم | {{ number_format($order->grand_total-$order->paid_amount,2) }} |