Clients

Clients

Manage your client base and their vehicles

Add Client
{{-- Success Message --}} @if (session('success'))

{{ session('success') }}

@endif {{-- Clients Card --}}
@if ($clients->isEmpty()) {{-- Empty State --}}

No Clients Yet

Get started by adding your first client to the system.

Add Your First Client
@else {{-- Clients Table --}}
@foreach ($clients as $client) {{-- Name --}} {{-- Phone --}} {{-- Email --}} {{-- Vehicles --}} {{-- Status --}} {{-- Actions --}} @endforeach
Name Phone Actions
{{ substr($client->full_name ?? $client->name ?? 'N', 0, 1) }}

{{ $client->full_name ?? $client->name ?? 'N/A' }}

@if ($client->phone) {{ $client->phone }} @else @endif
{{-- View --}} {{-- Edit --}} {{-- Delete --}}
@csrf @method('DELETE')
{{-- Pagination --}} @if ($clients->hasPages())
{{ $clients->links('pagination::tailwind') }}
@endif @endif