@extends('layouts.dashboard.superadminapp') @section('title', 'View Purchase Quotation') @section('content')

Purchase Quotation Details

Back
Quotation No:
{{ $quotation->quotation_no }}
Quotation Date:
{{ formateDate($quotation->quotation_date) }}
Vendor Name:
{{ $quotation->vendor_name }}
RFQ No:
{{ $quotation->rfq_no }}
RFQ Date:
{{ $quotation->rfq_date }}
Vendor Reference No:
{{ $quotation->vendor_reference_no }}
Additional Charges:
{{ $quotation->additional_charges }}
Delivery Terms:
{{ $quotation->delivery_terms }}
Address:
{{ $quotation->address }}
GST:
{{ $quotation->gst }}
Phone:
{{ $quotation->phone }}
Email:
{{ $quotation->email }}
Note:
{{ $quotation->note }}
Status:
{{ $quotation->status }}
Vendor Quotations Attachments
@forelse ($quotation->files as $file) @empty

No vendor quotation files attached.

@endforelse

Quotation Items
@if ($quotation->items->count())
@foreach ($quotation->items as $idx => $item) @endforeach
# Stock Item Description Quantity UOM Supply Lead Time Unit Rate TDS (%) Discount (%) Value SGST (%) CGST (%) IGST (%) Amount
{{ $idx + 1 }} {{ $item->stockItem ? $item->stockItem->item_name : $item->stock_item }} {{ $item->description }} {{ $item->quantity }} {{ $item->uom }} {{ $item->supply_lead_time }} {{ $item->unit_rate }} {{ $item->tds }} {{ $item->discount }} {{ $item->value }} {{ $item->sgst }} {{ $item->cgst }} {{ $item->igst }} {{ $item->amount }}
@else

No items added to this quotation.

@endif
Sub Total:
{{ $quotation->sub_total }}
Round Up:
{{ $quotation->round_up }}
Grand Total:
{{ $quotation->grand_total }}
Amount in Words:
{{ $quotation->inr_in_words }}
@endsection