@extends('layouts.admin') @section('title', 'Clients') @section('content')
Manage your client accounts and contacts
| 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 |
|||