{{$addedQuote->branch->company->name}}

Products Quotation
Contact No: {{ $addedQuote->branch->company->phone ?? ''}}
{{--
GST No - {{$addedQuote->branch->gst_no ?? ''}}
Contact No: {{ $addedQuote->branch->company->phone ?? ''}}
--}}
To: {{$addedQuote->client->user->name ?? ''}}
Address: {{$addedQuote->client->user->location ?? ''}}
Quote No: {{ $addedQuote->quote_id ?? ''}}
Quote Date: {{ $addedQuote->quote_date ? \Carbon\Carbon::parse($addedQuote->quote_date)->format('d-m-Y') : '' }}
{{-- --}} @php $subtotal = 0; $pageSubtotal = 0; $pageCount = 0; @endphp @foreach ($addedQuote->quotesItem as $index => $product) @php $total = $product->quantity * $product->price; $gstAmount = ($product->total * $product->quoteItemTaxes->sum('tax')) / 100; $totalWithGst = $total + $gstAmount; $subtotal += $totalWithGst; $pageSubtotal += $totalWithGst; @endphp {{-- --}} @if (($index + 1) % 18 == 0)
S.No Description HSN Code Qty RateGST(%)Total
{{ $index + 1 }} {{ $product->product_name ?? '' }} {{ $product->product->code}} {{ $product->quantity . '(' . ($product->product->category->unitOfMass->name ?? '') . ')' ?? '' }} ₹ {{ number_format($product->price ?? '', 2) }} {{ number_format($product->quoteItemTaxes->sum('tax') ?: 0, 2) }} @php // $gstAmount = ($product->total * $product->quoteItemTaxes->sum('tax')) / 100; // $total = $product->total + $gstAmount; $total = $product->total; @endphp ₹ {{ number_format($total, 2) }}

...Continue

{{$addedQuote->branch->company->name}}

{{$addedQuote->branch->company->address}},
Mail -{{$addedQuote->branch->company->email}}
GST No - {{$addedQuote->branch->gst_no ?? ''}}
Contact No: {{ $addedQuote->branch->company->phone ?? ''}}
To: {{$addedQuote->client->user->name ?? ''}}
Address: {{$addedQuote->client->user->location ?? ''}}
Payment Terms: {{$addedQuote->due_date ? \Carbon\Carbon::parse($addedQuote->due_date)->format('d-m-Y') : ''}}
Bill No: {{ $addedQuote->invoice_id ?? ''}}
Date: {{ $addedQuote->invoice_date ? \Carbon\Carbon::parse($addedQuote->invoice_date)->format('d-m-Y') : '' }}
@php $pageSubtotal = 0; $pageCount++; @endphp @endif @endforeach
S.No Description HSN Code Qty Rate GST(%) Total
Print Quotes Download Quotes {{-- @if ($settings->whatsapp_config == 'A') Send Invoice @endif --}} Back