@extends('layouts.dashboard.superadminapp') @section('title', 'Purchase Quotation Details') @section('styles') @endsection @section('content')
{{ $quotation->gst ?: '-' }}
{{ $quotation->note }}
{{ $quotation->description }}
| # | Stock Item | Description | Qty | UOM | Unit Rate | Discount % | Value | SGST % | CGST % | IGST % | Amount |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->stockItem->item_name ?? $item->stock_item_name ?? '-' }} | {{ $item->description ?: '-' }} | {{ $item->quantity }} | {{ $item->uom }} | {{ number_format($item->unit_rate, 2) }} | {{ $item->discount }}% | {{ number_format($item->value, 2) }} | {{ $item->sgst }}% | {{ $item->cgst }}% | {{ $item->igst }}% | {{ number_format($item->amount, 2) }} |
No items found
@endifNo attachments
@endif