| Client | Contact | Work | Invoices | Outstanding | |
|---|---|---|---|---|---|
|
{{ $client->name }}
@if($client->company)
{{ $client->company }}
@endif
@unless($client->is_active)
Inactive
@endunless
|
{{ $client->phone ?: '—' }}
{{ $client->email }}
|
{{ \Illuminate\Support\Str::limit($client->work_details, 60) ?: '—' }} | {{ $client->invoices_count }} |
@forelse($totals->get($client->id, collect()) as $row)
{{ $row->currency }} {{ number_format((float) $row->outstanding, 2) }}
@empty
—
@endforelse
|
Open Invoice |
| No clients yet. Add one to start invoicing. | |||||