@extends('layouts.app') @section('title', __('Dashboard')) @section('content')
| # | {{ __('Customer') }} | {{ __('Total') }} | {{ __('Status') }} |
|---|---|---|---|
| {{ $invoice->invoice_number }} {{ $invoice->invoice_date->format('d M') }} | {{ $invoice->customer?->name ?? $invoice->walk_in_name ?? __('Walk-in Customer') }} | {{ number_format($invoice->total, 2) }} {{ $invoice->currency_code }} | {{ __(ucfirst($invoice->status)) }} |
| {{ __('No invoices yet.') }} | |||
{{ __('Stock levels look good.') }}
@endforelse