Quotation to
Customer Name :
{{ $quotation->customer_name }}
{{ $quotation->quote_no }}
{{ $quotation->quote_date }}
Information
| Phone Number | Address | Customer Type |
|---|---|---|
| {{ $quotation->phno }} | {{ $quotation->address }} | {{ $quotation->type }} |
| {{ trans('No') }} | {{ trans('Item Name') }} | {{ trans('Descriptions') }} | {{ trans('Qty') }} | {{ trans('Unit') }} | {{ trans('Price') }} | {{ trans('Discounts') }} | {{----}} | {{ trans('Total') }} {{-- ({{ config('currency.symbol') }}) --}} |
|---|---|---|---|---|---|---|---|---|
| {{ $no }} | {{ $sell->part_number }} | {{ $sell->description }} | {{ $sell->product_qty }} | {{ $sell->unit }} | @if ($quotation->sale_price_category == 'Default') @if ($quotation->type == 'Whole Sale') {{ number_format($sell->product_price ?? 0, 2) }} @else {{ number_format($sell->retail_price ?? 0, 2) }} @endif @elseif ($quotation->sale_price_category == 'Whole Sale') {{ number_format($sell->product_price ?? 0, 2) }} @elseif ($quotation->sale_price_category == 'Retail') {{ number_format($sell->retail_price ?? 0, 2) }} @else {{ number_format($sell->retail_price ?? 0, 2) }} @endif | {{ number_format($sell->discount ?? 0, 2) }} | @if ($quotation->sale_price_category == 'Default') @if ($quotation->type == 'Whole Sale') {{ number_format($sell->product_price * $sell->product_qty - $sell->discount ?? 0, 2) }} @else {{ number_format($sell->retail_price * $sell->product_qty - $sell->discount ?? 0, 2) }} @endif @elseif ($quotation->sale_price_category == 'Whole Sale') {{ number_format($sell->product_price * $sell->product_qty - $sell->discount ?? 0, 2) }} @elseif ($quotation->sale_price_category == 'Retail') {{ number_format($sell->retail_price * $sell->product_qty - $sell->discount ?? 0, 2) }} @else {{ number_format($sell->retail_price * $sell->product_qty - $sell->discount ?? 0, 2) }} @endif | |
| Sub Total | {{ number_format($quotation->sub_total ?? 0, 2) }} | |||||||
| Overall Discount | {{ number_format($quotation->discount_total ?? 0, 2) }} | |||||||
| Item Discount | {{ number_format($sells->sum('discount') ?? 0, 2) }} | |||||||
| Total | {{ number_format($quotation->total ?? 0, 2) }} | |||||||
| Deposit | {{ number_format($quotation->deposit ?? 0, 2) }} | |||||||
| Remaining Balance | {{ number_format($quotation->remain_balance ?? 0, 2) }} | |||||||
| Remark - {{ $quotation->remark }} |
{{-- Print --}}