@extends('backend.layouts.app') @section('content')
| # | Invoice No | Invoice Date | Amount | Payment Status | Payment Type | Transaction No | Received Date | Received By | Remark |
|---|---|---|---|---|---|---|---|---|---|
| {{ $invoices->firstItem() + $key }} | {{ $invoice->invoice_no }} | {{ $invoice->invoice_date ? $invoice->invoice_date->format('Y-m-d') : '-' }} | ৳ {{ number_format($invoice->amount, 2) }} | @if ($invoice->payment_status == 'paid') Paid @else Unpaid @endif | {{ ucfirst(str_replace('_', ' ', $invoice->payment_type ?? '-')) }} | {{ $invoice->transaction_no ?? '-' }} | {{ $invoice->received_date ?? '-' }} | {{ $invoice->received_by ?? '-' }} | {{ $invoice->remark ?? '-' }} |
| No invoices found. | |||||||||