Estimate
Estimate To
{{ $invoice->customer->customer_name ?? '' }}
@if($invoice->customer->customer_address)
{{ $invoice->customer->customer_address ?? '' }}
@endif @if($invoice->customer->location)
{{ $invoice->customer->location ?? '' }}
@endif @if($invoice->customer->state)
{{ $invoice->customer->state->state_name ?? '' }}
@endif @if($invoice->customer->mobile_no)
Mobile : {{ $invoice->customer->mobile_no ?? '' }}
@endif
Estimate Date
{{ $invoice->invoice_date->format(app_date_format()) }}
Estimate No.
{{ $invoice->reference_no }}
S.No
Description
Qty
Unit Price
Amount
@foreach ($invoice->items as $invKey => $invoiceitems)
{{ $invKey+1 }}.
{{ $invoiceitems->product->product_name ?? '' }}
{{ round($invoiceitems->quantity,2) }}
{{ number_format($invoiceitems->price,2) }}
{{ number_format($invoiceitems->row_total,2) }}
@endforeach
Sub Total
{{ number_format($invoice->sub_total,2) }}
Round Off
{{ number_format($invoice->round_off,2) }}
Grand Total
{{ number_format($invoice->grand_total,2) }}