Vendor Name: {{ $vendor->name ?? 'N/A' }}
Company: {{ $vendor->company_name ?? 'N/A' }}
| Product | {{ $quotation->product->product_name ?? 'N/A' }} ({{ $quotation->product->product_code ?? 'N/A' }}) |
|---|---|
| AMC Price (without GST) | ₹{{ number_format($basePrice, 2) }} |
| GST ({{($gst_persentage)}}%) | ₹{{ number_format($gst, 2) }} |
| Total Price (with GST) | ₹{{ number_format($totalPrice, 2) }} |
| Type | {{ $quotation->atype }} |
| Service Time Frame | {{ $quotation->service_timeframe }} |
| Start Date | {{ \Carbon\Carbon::parse($quotation->start_date)->format('d-m-Y') }} |
| End Date | {{ \Carbon\Carbon::parse($quotation->end_date)->format('d-m-Y') }} |