{{-- Header Row --}}
{{-- Document Title --}}
Sales Enquiry
{{-- Party Name --}}
{{ $enquiry->party->name }}
@if($enquiry->party->billing_address){{ $enquiry->party->billing_address }}@endif
@if($enquiry->party->mobile) | Ph: {{ $enquiry->party->mobile }}@endif
@if($enquiry->party->gst_number) | GST: {{ $enquiry->party->gst_number }}@endif
{{-- Items Table --}}
| Sr. |
Qty |
Unit |
Items |
Rate |
Amount |
@foreach($enquiry->items as $index => $item)
| {{ $index + 1 }}. |
{{ indian_number($item->qty, 2) }} |
{{ strtolower($item->unit) }} |
{{ $item->product->name ?? 'Product' }} |
{{ indian_number($item->rate, 2) }} |
{{ indian_number($item->line_amount ?? ($item->qty * $item->rate), 2) }} |
@endforeach
{{-- Totals Section --}}
|
Amount: |
{{ indian_number($enquiry->amount_total, 2) }} |
@if($enquiry->tax_total > 0)
|
Tax: |
{{ indian_number($enquiry->tax_total, 2) }} |
@endif
@if($enquiry->roundoff != 0)
|
Roundoff: |
{{ indian_number($enquiry->roundoff, 2) }} |
@endif
|
Grand Total: |
{{ indian_number($enquiry->grand_total, 2) }} |
{{-- Separator --}}
{{-- Company Footer --}}
{{ $company->legal_name ?? $company->name }}
@if($company->billing_address){{ $company->billing_address }}
@endif
@if($company->phone)Ph: {{ $company->phone }} @endif
@if($company->gstin)| GSTIN: {{ $company->gstin }}@endif
This is a computer-generated enquiry. Prices subject to change.