@extends('layouts.finance') @section('title', 'Clients') @section('subtitle', 'Clients, the work you do for them, and what they owe') @section('content')

Clients

+ New Invoice + Add Client
@forelse($clients as $client) @empty @endforelse
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.
{{ $clients->links() }}
@endsection