@extends('layouts.app') @section('title', 'NTTN Invoices') @section('content')
Manage NTTN invoices
| ID | Sales Invoice | Company Name | Total Cost Amount | Status | Created By | Created At | Actions |
|---|---|---|---|---|---|---|---|
| {{ $invoice->id }} | {{ $invoice->salesInvoice->invoice_no ?? 'N/A' }} | {{ $invoice->company_name ?? '-' }} | ৳ {{ number_format($invoice->total_cost_amount, 2) }} | @if($invoice->status == 'approved') Approved @elseif($invoice->status == 'rejected') Rejected @else Pending @endif | {{ $invoice->createdBy->name ?? 'N/A' }} | {{ $invoice->created_at->format('d M Y') }} | |
|
No NTTN invoices found |
|||||||