@extends('layouts.app') @section('title',$invoice->invoice_no.' • JAN Enterprises ERP') @section('page_title',$invoice->invoice_no) @section('page_subtitle',$invoice->order->company->name.' • '.$invoice->invoice_date->format('d M Y')) @section('content') @php $balance=$invoice->balance; @endphp
| Description | HSN | Qty | Rate | Amount |
|---|---|---|---|---|
| {{ $item->description }} | {{ $item->hsn }} | {{ $item->quantity }} | ₹{{ number_format((float)$item->rate,2) }} | ₹{{ number_format((float)$item->amount,2) }} |
| Receipt | Date | Method | Reference | Amount |
|---|---|---|---|---|
| {{ $p->receipt_no }} | {{ $p->payment_date->format('d M Y') }} | {{ $p->method }} | {{ $p->reference ?: '—' }} | ₹{{ number_format((float)$p->amount,2) }} |