@extends('layouts.app') @section('title', 'Sales Invoices') @section('page_title', 'Sales Tax Invoices (GST)') @section('content')
@if(request()->hasAny(['search', 'payment_status', 'status'])) Clear @endif
New Sales Tax Invoice
@forelse($invoices as $invoice) @empty @endforelse
Invoice # / Date Customer (Place of Supply) GST Tax Type Taxable Value Total Tax Grand Total Balance Due Status Actions
{{ $invoice->invoice_number }}
{{ $invoice->invoice_date->format('d M Y') }}
{{ $invoice->party_name }}
@if($invoice->party_gstin) GSTIN: {{ $invoice->party_gstin }} @else B2C Unregistered @endif
@if($invoice->is_inter_state) IGST ({{ $invoice->place_of_supply_state }}) @else CGST + SGST (Intra) @endif ₹{{ number_format($invoice->taxable_amount, 2) }} ₹{{ number_format($invoice->total_tax_amount, 2) }} ₹{{ number_format($invoice->grand_total, 2) }} ₹{{ number_format($invoice->balance_due, 2) }} @if($invoice->status == 'cancelled') Cancelled @else {{ ucfirst(str_replace('_', ' ', $invoice->payment_status)) }} @endif
No sales invoices found.
@if($invoices->hasPages()) @endif
@endsection