| Purchase Ref | Date | Supplier Details | Product | HSN | Qty | Rate | Taxable Value | GST% | Tax Amount | Total Amount | Location |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $purchase->ref_no ?? '' }} | {{ $purchase->transaction_date ? \Carbon\Carbon::parse($purchase->transaction_date)->format('d-m-Y') : '' }} |
@if($purchase->supplier_business_name)
{{ $purchase->supplier_business_name }} @endif {{ $purchase->supplier ?? '' }} @if($purchase->tax_number) {{ $purchase->tax_number }} @endif |
{{ $purchase->product_name ?? '' }}
@if($purchase->sku)
{{ $purchase->sku }} @endif |
{{ $purchase->hsn_code ?? '-' }} | {{ number_format($purchase->quantity ?? 0, 2) }} {{ $purchase->unit ?? '' }} | ₹{{ number_format($purchase->unit_price ?? 0, 2) }} | ₹{{ number_format($taxableAmount, 2) }} | @if($purchase->tax_rate) {{ $purchase->tax_rate }}% @else - @endif | ₹{{ number_format($taxAmount, 2) }} | ₹{{ number_format($lineTotal, 2) }} | {{ $purchase->location_name ?? '-' }} |
| TOTAL: | {{ number_format($totalQuantity, 2) }} | ₹{{ number_format($totalTaxableAmount, 2) }} | ₹{{ number_format($totalTaxAmount, 2) }} | ₹{{ number_format($totalAmount, 2) }} | |||||||
No purchase transactions found for the selected criteria.
| Particulars | Taxable Value (₹) | Tax Amount (₹) | Total Amount (₹) |
|---|---|---|---|
| Total Purchases (Including GST) | {{ number_format($summary['total_taxable_amount'] ?? 0, 2) }} | {{ number_format($summary['total_tax_amount'] ?? 0, 2) }} | {{ number_format($summary['total_amount'] ?? 0, 2) }} |
| Available for Input Tax Credit | {{ number_format($summary['total_taxable_amount'] ?? 0, 2) }} | {{ number_format($summary['total_tax_amount'] ?? 0, 2) }} | {{ number_format($summary['total_tax_amount'] ?? 0, 2) }} |
| GST Rate | No. of Items | Taxable Value (₹) | Tax Amount (₹) | Total Value (₹) |
|---|---|---|---|---|
| @if($rate > 0) {{ $rate }}% @else Exempt @endif | {{ $summary['count'] }} | {{ number_format($summary['taxable_amount'], 2) }} | {{ number_format($summary['tax_amount'], 2) }} | {{ number_format($summary['total_amount'], 2) }} |
| TOTAL | {{ array_sum(array_column($taxRateSummary, 'count')) }} | {{ number_format(array_sum(array_column($taxRateSummary, 'taxable_amount')), 2) }} | {{ number_format(array_sum(array_column($taxRateSummary, 'tax_amount')), 2) }} | {{ number_format(array_sum(array_column($taxRateSummary, 'total_amount')), 2) }} |