Computer & Electronics
{{ $quotation->customer?->name ?? $quotation->customer_name ?? 'Valued Customer' }}
{{ $quotation->customer?->phone ?? $quotation->customer_phone ?? '' }}
{{ $quotation->customer?->address ?? '' }}
ERP System
Prepared by: {{ $quotation->creator->name }}
Date: {{ $quotation->quotation_date->format('d M Y') }}
| # | Description | Qty | Unit Price | Discount | Total |
|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $item->item_name }}@if($item->description) {{ $item->description }}@endif |
{{ $item->qty }} | ৳{{ number_format($item->unit_price,2) }} | {{ $item->discount > 0 ? '৳'.number_format($item->discount,2) : '—' }} | ৳{{ number_format($item->total_price,2) }} |
| Discount: | -৳{{ number_format($quotation->discount,2) }} | ||||
| VAT: | +৳{{ number_format($quotation->vat,2) }} | ||||
| GRAND TOTAL: | ৳{{ number_format($quotation->total_amount,2) }} | ||||
Terms: {{ $quotation->terms }}
@endif @if($quotation->notes)Notes: {{ $quotation->notes }}
@endif