@extends('layouts.app') @section('title', 'Invoice #' . $invoice->invoice_number) @section('page_title', 'Tax Invoice Overview') @section('content')
| # | Description of Goods | HSN Code | Qty | Rate (₹) | Taxable Value (₹) | @if($invoice->is_inter_state)IGST | @elseCGST | SGST | @endifTotal (₹) |
|---|---|---|---|---|---|---|---|---|---|
| {{ $idx + 1 }} |
{{ $item->product_name }}
@if($item->discount_percent > 0)
Discount: {{ $item->discount_percent }}% (₹{{ number_format($item->discount_amount, 2) }})
@endif
|
{{ $item->hsn_code }} | {{ number_format($item->quantity, 0) }} {{ $item->unit_code }} | ₹{{ number_format($item->unit_price, 2) }} | ₹{{ number_format($item->taxable_value, 2) }} | @if($invoice->is_inter_state)
{{ $item->igst_rate }}%
₹{{ number_format($item->igst_amount, 2) }}
|
@else
{{ $item->cgst_rate }}%
₹{{ number_format($item->cgst_amount, 2) }}
|
{{ $item->sgst_rate }}%
₹{{ number_format($item->sgst_amount, 2) }}
|
@endif
₹{{ number_format($item->total_amount, 2) }} |
| HSN/SAC | Taxable Val | @if($invoice->is_inter_state)IGST Rate | IGST Amt | @elseCGST Rate | CGST Amt | SGST Rate | SGST Amt | @endifTotal Tax |
|---|---|---|---|---|---|---|---|---|
| {{ $hsnItem['hsn'] }} | ₹{{ number_format($hsnItem['taxable'], 2) }} | @if($invoice->is_inter_state){{ $hsnItem['igst_rate'] }}% | ₹{{ number_format($hsnItem['igst_amount'], 2) }} | @else{{ $hsnItem['cgst_rate'] }}% | ₹{{ number_format($hsnItem['cgst_amount'], 2) }} | {{ $hsnItem['sgst_rate'] }}% | ₹{{ number_format($hsnItem['sgst_amount'], 2) }} | @endif₹{{ number_format($hsnItem['total_tax'], 2) }} |
| Total Taxable Value: | ₹{{ number_format($invoice->taxable_amount, 2) }} |
| Integrated GST (IGST): | ₹{{ number_format($invoice->igst_amount, 2) }} |
| Central GST (CGST): | ₹{{ number_format($invoice->cgst_amount, 2) }} |
| State GST (SGST): | ₹{{ number_format($invoice->sgst_amount, 2) }} |
| Total Tax: | ₹{{ number_format($invoice->total_tax_amount, 2) }} |
| Round Off: | {{ $invoice->round_off >= 0 ? '+' : '' }}₹{{ number_format($invoice->round_off, 2) }} |
| Grand Total: | ₹{{ number_format($invoice->grand_total, 2) }} |
| Amount Paid: | ₹{{ number_format($invoice->paid_amount, 2) }} |
| Balance Due: | ₹{{ number_format($invoice->balance_due, 2) }} |