@extends('client-system::layouts.admin') @section('title', 'Clients') @section('content')

Clients

Add New Client
Reset
@if($clients->count() > 0)
@foreach($clients as $client) @endforeach
Client Contact Users Events Status Actions
@if($client->getBrandingDetails() && isset($client->getBrandingDetails()['logo_url'])) {{ $client->name }} logo @else
{{ substr($client->name, 0, 1) }}
@endif
{{ $client->name }}
Created {{ $client->created_at->format('M d, Y') }}
{{ $client->contact_name }}
{{ $client->contact_email }}
{{ $client->users_count ?? 0 }} {{ $client->events_count ?? 0 }} @if($client->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@else

No clients found

Add Your First Client
@endif
@endsection