@extends('layouts.dashboard.superadminapp') @section('title', 'Payable Details - ' . $payable->purchase_no) @section('styles') @endsection @section('content')
| Subtotal | ₹{{ number_format($payable->subtotal ?? 0, 2) }} |
| SGST | ₹{{ number_format($payable->sgst_amount ?? 0, 2) }} |
| CGST | ₹{{ number_format($payable->cgst_amount ?? 0, 2) }} |
| IGST | ₹{{ number_format($payable->igst_amount ?? 0, 2) }} |
| Additional Charges | ₹{{ number_format($payable->additional_charges ?? 0, 2) }} |
| TDS | -₹{{ number_format($payable->tds_amount ?? 0, 2) }} |
| Grand Total | ₹{{ number_format($payable->grand_total ?? 0, 2) }} |
| Paid Amount | ₹{{ number_format($payable->paid_amount ?? 0, 2) }} |
| Balance Due | ₹{{ number_format($payable->balance_amount ?? $payable->grand_total, 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 ?? ($item->quantity * ($item->rate ?? $item->unit_price ?? 0)), 2) }} |