Estimation

Estimation Number : {{$addedInvoice->quote_id ?? ''}}

Estimation Date : {{$addedInvoice->quote_date ? \Carbon\Carbon::parse($addedInvoice->invoice_date)->format('d-m-Y') : ''}}

Estimation To

{{$addedInvoice->client->user->name ?? ''}}

(+91) {{$addedInvoice->client->user->phone ?? ''}}

Estimation From

{{$settings->company_name ?? ''}}

{{$settings->address ?? ''}}
{{$settings->email ?? ''}}
(+91) {{$settings->phone ?? ''}}

Estimated Bill
@foreach ($addedInvoice->quotesItem as $index => $data) @endforeach
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) }}