@extends('layouts.app') @section('content')
| Invoice No. | Date | {{--Customer | --}}Total Amount | Status | Action | |
|---|---|---|---|---|---|---|
| {{ $invoice->reference_no }} | {{ $invoice->invoice_date->format(app_date_format()) }} | {{--{{ $invoice->customer->customer_name ?? '' }} | --}}{{ number_format($invoice->grand_total, 2) }} | @if ($invoice->status == 'draft') Draft @elseif ($invoice->status == 'paid') Paid @endif | ||
| @lang('general.no_details_found') | ||||||