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

Client Management

Manage your client accounts and contacts

@if(request('search')) Clear @endif
@forelse($clients as $client) @empty @endforelse
Client Contact Sites Actions

{{ $client->name }}

@if($client->notes)

{{ Str::limit($client->notes, 40) }}

@endif
{{ $client->contact_name }}
{{ $client->contact_email }}
@if($client->contact_phone)
{{ $client->contact_phone }}
@endif
{{ $client->sites_count }} site{{ $client->sites_count !== 1 ? 's' : '' }}

No clients found

@if(request('search')) Try adjusting your search criteria @else Get started by adding your first client @endif

@if($clients->hasPages())
{{ $clients->links() }}
@endif
@push('scripts') @endpush @endsection