ERP System

Computer & Electronics

QUOTATION

{{ $quotation->quotation_no }}
{{ $quotation->quotation_date->format('d F Y') }}
@if($quotation->valid_until)
Valid until: {{ $quotation->valid_until->format('d M Y') }}
@endif

For

{{ $quotation->customer?->name ?? $quotation->customer_name ?? 'Valued Customer' }}
{{ $quotation->customer?->phone ?? $quotation->customer_phone ?? '' }}
{{ $quotation->customer?->address ?? '' }}

From

ERP System
Prepared by: {{ $quotation->creator->name }}
Date: {{ $quotation->quotation_date->format('d M Y') }}

@foreach($quotation->items as $i => $item) @endforeach @if($quotation->discount>0)@endif @if($quotation->vat>0)@endif
#DescriptionQtyUnit PriceDiscountTotal
{{ $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) }}
@if($quotation->terms)

Terms: {{ $quotation->terms }}

@endif @if($quotation->notes)

Notes: {{ $quotation->notes }}

@endif