@extends('layouts.app') @section('title', 'Clients') @section('content')

View/Search Clients

Manage all your clients

Add New Client
@if(request('search')) Clear @endif
@forelse($clients as $client) @empty @endforelse
Client Email Services Invoices Tickets Revenue Joined Actions
{{ substr($client->name, 0, 1) }}
{{ $client->name }}
@if($client->company)
{{ $client->company }}
@endif
{{ $client->email }} {{ $client->services_count }} {{ $client->invoices_count }} {{ $client->tickets_count }} {{ format_currency($client->total_revenue ?? 0) }} {{ $client->created_at->format('M d, Y') }} View

No clients found

Start by adding your first client

@if($clients->hasPages())
{{ $clients->links() }}
@endif
@endsection