@extends('layouts.dashboard.superadminapp') @section('title', 'Receivable Details - ' . $invoice->invoice_no) @section('styles') @endsection @section('content')
| Taxable Value | ₹{{ number_format($invoice->taxable_value ?? 0, 2) }} |
| SGST | ₹{{ number_format($invoice->sgst ?? 0, 2) }} |
| CGST | ₹{{ number_format($invoice->cgst ?? 0, 2) }} |
| IGST | ₹{{ number_format($invoice->igst ?? 0, 2) }} |
| Total Amount | ₹{{ number_format($invoice->total_amount ?? 0, 2) }} |
| Amount Received | ₹{{ number_format($totalPaid, 2) }} |
| Balance Due | ₹{{ number_format($balance, 2) }} |
| Payment No | Date | Method | Reference | Amount | Notes |
|---|---|---|---|---|---|
| {{ $payment->payment_no }} | {{ \Carbon\Carbon::parse($payment->payment_date)->format('d M Y') }} | {{ $payment->payment_method ?? '-' }} | {{ $payment->reference_no ?? '-' }} | ₹{{ number_format($payment->payment_amount, 2) }} | {{ $payment->notes ?? '-' }} |
| Total Received: | ₹{{ number_format($totalPaid, 2) }} | ||||
| # | Description | HSN/SAC | Qty | Rate | Amount |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->description ?? $item->item_name ?? 'N/A' }} | {{ $item->hsn_code ?? '-' }} | {{ $item->quantity ?? 0 }} | ₹{{ number_format($item->rate ?? $item->unit_price ?? 0, 2) }} | ₹{{ number_format($item->amount ?? 0, 2) }} |