@extends('layouts.master') @section('title') Quotation Detail @endsection @section('page-title') Quotation Detail @endsection @section('body')
@endsection @section('content')
{{ $quotation->company->company_address ?? '' }}, {{ $quotation->company->area->area_name ?? '' }}, {{ $quotation->company->city->city_name ?? '' }}, {{ $quotation->company->state->state_name ?? '' }}, {{ $quotation->company->country->country_name ?? '' }}, {{ $quotation->company->company_pincode ?? '' }}
GST No: {{ $quotation->company->company_gstin ?? '' }}, Email: {{ $quotation->company->company_email ?? '' }}, Phone No: {{ $quotation->company->company_phone_no_1 ?? '' }}
{{ $quotation->customerAddress->customer_address ?? 'Customer Address' }}, {{ $quotation->customerAddress->customer_pincode ?? 'Customer Pincode' }}, {{ $quotation->customerAddress->area->area_name ?? 'Customer Area' }}, {{ $quotation->customerAddress->city->city_name ?? 'Customer City' }}, {{ $quotation->customerAddress->state->state_name ?? 'Customer State' }}, {{ $quotation->customerAddress->country->country_name ?? 'Customer Country' }},
Phone No: {{ $quotation->customer->customer_phone_no_1 ?? '' }}
@if ($quotation->customer->customer_gstin)GST No: {{ $quotation->customer->customer_gstin ?? '' }}
@endif| Quotation No | {{ $quotation->quotation_prefix }}/{{ $quotation->quotation_financial_year }}/{{ $quotation->quotation_number }} |
| Quotation Date | {{ \Carbon\Carbon::parse($quotation->quotation_date)->format('d/m/Y') ?? '' }} |
| Quotation Type | {{ $quotation->quotationMaster->quotation_master_name ?? '' }} |
| Quotation Validity | {{ $quotation->quotation_validity ?? '' }} |
| # | Name | Description | Qty | UOM | Unit Price | Total |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->quotationItem->quotation_master_item_name ?? '' }} | {{ $item->item_description ?? '' }} | {{ $item->item_qty }} | {{ $item->item_uom ?? '' }} | {{ $item->item_unit_price ?? '' }} | {{ $item->item_sub_total ?? '' }} |
| Sub Total | {{ number_format($quotation->quotation_sub_total_amount, 2) }} | |||||
| Tax {{ number_format($item->item_tax_rate, 2) }}% | {{ number_format($quotation->quotation_total_tax, 2) }} | |||||
| Total |
{{ number_format($quotation->quotation_grand_total, 2) }} |
|||||
{!! nl2br(e($quotation->quotation_note ?? '')) !!}
{!! nl2br(e($quotation->quotation_remarks ?? '')) !!}
{!! nl2br(e($quotation->quotation_terms ?? '')) !!}