@extends("client.layouts.app") @section("title", __("client.invoices.title")) @section("content")
{{ __('client.invoices.page_subtitle') }}
| {{ __('common.table.invoice_num') }} | {{ __('common.table.date') }} | {{ __('common.table.due_date') }} | {{ __('common.table.total') }} | {{ __('common.table.status') }} | {{ __('common.table.action') }} |
|---|---|---|---|---|---|
| #{{ $inv->invoice_num ?? $inv->id }} | {{ $inv->date?->format("d M Y") ?? "-" }} | {{ $inv->due_date?->format("d M Y") ?? "-" }} | ${{ number_format($inv->total, 2) }} | {{ __('client.status.' . strtolower($inv->status)) }} | @if(in_array(strtolower($inv->status), ["unpaid", "overdue"])) {{ __('common.actions.pay_now') }} @else {{ __('common.actions.view') }} @endif |
|
{{ __('admin.invoices.no_invoices') }} |
|||||