@extends('layouts.app') @section('title', __('Invoices')) @section('content')
| {{ __('Invoice') }} | {{ __('Customer') }} | {{ __('Type') }} | {{ __('Total') }} | {{ __('Paid / Due') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }}{{ \App\Support\DualDate::format($invoice->invoice_date, 'd M Y') }} | {{ $invoice->customer?->name ?? __('Walk-in Customer') }} | {{ __($invoice->sale_type === 'retail' ? 'Retail' : 'Wholesale') }} | {{ number_format($invoice->total, 2) }} {{ $invoice->currency_code }} | {{ number_format($invoice->paid_amount, 2) }} / {{ number_format($invoice->due_amount, 2) }} | {{ __(ucfirst($invoice->status)) }} | |
| {{ __('No invoices yet.') }} | ||||||