@extends('layouts.tenant') @section('title', 'Clients') @section('content')
Manage your client contacts and their information.
{{ session('success') }}
| Client | Contact | Status | Created | Actions |
|---|---|---|---|---|
|
{{ strtoupper(substr($client->name, 0, 2)) }}
{{ $client->name }}
@if($client->company)
{{ $client->company }}
@endif
|
{{ $client->email ?: 'No email' }}
{{ $client->phone ?: 'No phone' }}
|
{{ ucfirst($client->status) }} | {{ $client->created_at->format('M j, Y') }} |
@if(request('search') || request('status')) Try adjusting your search criteria. @else Get started by adding your first client. @endif