@extends('admin.layouts') @section('title', 'GSTR-1 (Sales)') @section('header') @endsection @section('content')
| # | Customer Name | Invoice Number | Invoice Date | Invoice Value | Total Tax (%) | Taxable Value | CGST | SGST | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $customer['name'] ?? 'N/A' }} | {{ $sale->order_id ?? '-' }} | {{ $sale->created_at ? $sale->created_at->format('d-m-Y') : '-' }} | ₹{{ number_format($sale->amount_payable ?? 0, 2) }} | {{ $totalGstPercent }}% | ₹{{ number_format($totalTaxable, 2) }} | ₹{{ number_format($totalCgst, 2) }} | ₹{{ number_format($totalSgst, 2) }} | View Invoice |
| # | Customer Name | Invoice Number | Invoice Date | Invoice Value | Taxable Value | CGST | SGST | Total Tax | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $customer['name'] ?? 'N/A' }} | {{ $sale->order_id ?? '-' }} | {{ $sale->created_at?->format('d-m-Y') ?? '-' }} | ₹{{ number_format($sale->amount_payable ?? 0, 2) }} | ₹{{ number_format(($sale->amount_payable ?? 0) - ($sale->cgst ?? 0) - ($sale->sgst ?? 0), 2) }} | ₹{{ number_format($sale->tax_value ?? 0, 2) }} | ₹{{ number_format($sale->cgst ?? 0, 2) }} | ₹{{ number_format($sale->sgst ?? 0, 2) }} | View Invoice |
| # | Invoice Number | Invoice Date | Invoice Value | Total Tax(%) | Taxable Value | CGST | SGST | Total Tax | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $sale->order_id }} | {{ $sale->created_at?->format('d-m-Y') }} | ₹{{ number_format($taxable,2) }} | {{-- Taxable Value like Screenshot --}}{{ $taxPercent }}% | {{-- Tally style Total Tax % --}}₹{{ number_format($invoice,2) }} | ₹{{ number_format($cgst,2) }} | ₹{{ number_format($sgst,2) }} | ₹{{ number_format($totalTax,2) }} | View Invoice |