@php
$isMaharashtra = isset($quotation) && strtolower($quotation->state) === 'maharashtra';
@endphp
| HSN/SAC |
Taxable Value |
@if($isMaharashtra)
CGST |
SGST |
IGST |
@else
CGST |
SGST |
IGST |
@endif
Total Tax Amount |
|
|
@if($isMaharashtra)
Rate (%) |
Amount (₹) |
Rate (%) |
Amount (₹) |
Rate (%) |
Amount (₹) |
@else
Rate (%) |
Amount (₹) |
Rate (%) |
Amount (₹) |
Rate (%) |
Amount (₹) |
@endif
|
| {{$quotation->hsn_number}} |
{{ number_format($quotation->gst_rate, 2) }}% |
@if($isMaharashtra)
{{ $quotation->gst_rate / 2 }}% |
₹{{ number_format($quotation->cgst, 2) }} |
{{ $quotation->gst_rate / 2 }}% |
₹{{ number_format($quotation->sgst, 2) }} |
— |
— |
@else
— |
— |
— |
— |
{{ $quotation->gst_rate }}% |
₹{{ number_format($quotation->igst, 2) }} |
@endif
@if($isMaharashtra)
₹{{ number_format($quotation->cgst + $quotation->sgst, 2) }}
@else
₹{{ number_format($quotation->igst, 2) }}
@endif
|
| Total: |
{{ number_format($quotation->gst_rate, 2) }}% |
@if($isMaharashtra)
{{ $quotation->gst_rate / 2 }}% |
₹{{ number_format($quotation->cgst, 2) }} |
{{ $quotation->gst_rate / 2 }}% |
₹{{ number_format($quotation->sgst, 2) }} |
— |
— |
@else
— |
— |
— |
— |
{{ $quotation->gst_rate }}% |
₹{{ number_format($quotation->igst, 2) }} |
@endif
@if($isMaharashtra)
₹{{ number_format($quotation->cgst + $quotation->sgst, 2) }}
@else
₹{{ number_format($quotation->igst, 2) }}
@endif
|