Estimation Number : {{$addedInvoice->quote_id ?? ''}}
Estimation Date : {{$addedInvoice->quote_date ? \Carbon\Carbon::parse($addedInvoice->invoice_date)->format('d-m-Y') : ''}}
(+91) {{$addedInvoice->client->user->phone ?? ''}}
{{$settings->address ?? ''}}
{{$settings->email ?? ''}}
(+91) {{$settings->phone ?? ''}}
| No. | Item Description | Price | Quantity | Amount |
|---|---|---|---|---|
| {{$index + 1}} | {{$settings->native_name_flag == 'A' ? ($data->product->native_name ?? $data->product_name) : ($data->product_name ?? '') }} | {{$data->price ?? ''}} | {{$data->quantity ?? ''}} | {{$data->total ?? ''}} |
| SubTotal | ₹{{number_format($addedInvoice->amount ?? 0, 2)}} | |||
| Discount | @php $total = $addedInvoice->amount; $totalDiscount = $addedInvoice->discount_type == 1 ? $addedInvoice->discount : ($addedInvoice->discount_type == 2 ? ($total * $addedInvoice->discount) / 100 : 0); @endphp ₹ {{ number_format($totalDiscount, 2) }} | |||
| Grand Total | ₹{{ number_format(floor($total - $totalDiscount), 2) }} |