QUOTATION

Reference: {{ $quotation->quote_no }}

{{ config('app.name') }}
{{ config('app.url') }}
Customer: {{ $customer->name ?? 'Customer' }}
@if(!empty($customer->email)) Email: {{ $customer->email }}
@endif @if(!empty($customer->phone)) Phone: {{ $customer->phone }}
@endif @if(!empty($customer->company)) Company: {{ $customer->company }} @endif
@foreach($items as $item) @endforeach
Item / Description Qty Unit Price Amount
{{ $item->product->name ?? $item->description ?? 'Item' }} {{ $item->quantity }} {{ format_inr($item->unit_price) }} {{ format_inr($item->quantity * $item->unit_price) }}

Total: {{ format_inr($quotation->total ?? 0) }}