@extends('layouts.order-master') @section('css') @endsection @section('title') Quotation @endsection @section('content')
{{ $quotation->quotation_no }}
{{ \Carbon\Carbon::parse($quotation->quotation_date)->format('d M Y') }}
{{ $quotation->debitLedger?->name }}
Interstate(IGST)
@elseIntrastate
@endif{{ $quotation->priceSlab->name ?? '--' }}
{{ $quotation->stockLocation->name ?? '--' }}
{{ $quotation->remarks ?? '--' }}
| Item | MRP | Qty | Unit | Price | Price (Inc GST) | Gross Value | Dis % | Taxable Value | CGST | SGST | IGST | CESS | Total |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->stockItem->name }} @if($item->remarks != null) Remarks: {{ $item->remarks }} @endif |
{{ $item->stockItem->mrp }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->price_inc_tax }} | {{ $item->gross_value }} | {{ $item->disc_percentage }} | @php $totalTaxableValue += $item->taxable_value; @endphp {{ $item->taxable_value }} | {{ $item->cgst }} | {{ $item->sgst }} | {{ $item->igst }} | {{ $item->cess }} | {{ $item->total }} |
| Total | {{ round($totalTaxableValue, 2) }} | {{ $quotationItems->sum('cgst') }} | {{ $quotationItems->sum('sgst') }} | {{ $quotationItems->sum('total') }} | |||||||||