@extends('layouts.app') @section('content')
| Branch | Invocie No. | Date | Customer | GSTIN | State | Total Gross Amount | Exempted Tax Amount | 5% Taxable Amount | 5% IGST | 2.5% CGST | 2.5% SGST | 12% Taxable Amount | 12% IGST | 6% CGST | 6% SGST | 18% Taxable Amount | 18% IGST | 9% CGST | 9% SGST | 28% Taxable Amount | 28% IGST | 14% CGST | 14% SGST | Total Tax Amount | Net Total | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $invoice->branch->branch_name ?? '' }} | {{ $invoice->reference_no ?? '' }} | {{ $invoice->invoice_date->format(app_date_format()) ?? '' }} | {{ $invoice->customer->customer_name ?? '' }} | {{ $invoice->customer->gst_nos ?? '' }} | {{ $invoice->customer->state->state_name ?? '' }} | {{ number_format($invoice->tot_taxable_amt,2) }} | {{ number_format($invoice->getExemptedTaxbleAmount(),2) }} | {{ number_format($invoice->getTaxableAmount(5),2) }} | @if($igst == 1){{ number_format($invoice->getTaxAmount(5),2) }} | 0.00 | 0.00 | @else0.00 | {{ number_format($invoice->getTaxAmount(5)/2,2) }} | {{ number_format($invoice->getTaxAmount(5)/2,2) }} | @endif{{ number_format($invoice->getTaxableAmount(12),2) }} | @if($igst == 1){{ number_format($invoice->getTaxAmount(12),2) }} | 0.00 | 0.00 | @else0.00 | {{ number_format($invoice->getTaxAmount(12)/2,2) }} | {{ number_format($invoice->getTaxAmount(12)/2,2) }} | @endif{{ number_format($invoice->getTaxableAmount(18),2) }} | @if($igst == 1){{ number_format($invoice->getTaxAmount(18),2) }} | 0.00 | 0.00 | @else0.00 | {{ number_format($invoice->getTaxAmount(18)/2,2) }} | {{ number_format($invoice->getTaxAmount(18)/2,2) }} | @endif{{ number_format($invoice->getTaxableAmount(28),2) }} | @if($igst == 1){{ number_format($invoice->getTaxAmount(28),2) }} | 0.00 | 0.00 | @else0.00 | {{ number_format($invoice->getTaxAmount(28)/2,2) }} | {{ number_format($invoice->getTaxAmount(28)/2,2) }} | @endif{{ number_format($invoice->tot_tax_amt,2) }} | {{ number_format($invoice->grand_total,2) }} |
| @lang('general.no_details_found') | |||||||||||||||||||||||||||||||||||||