@extends('layouts.admin') @section('content')
| Client | Contact | Events | Status | Actions |
|---|---|---|---|---|
|
{{ $client->name }}
@if($client->description)
{!! Str::limit($client->description, 50) !!}
@endif
|
@if($client->contact_email) {{ $client->contact_email }} @else No contact @endif | {{ $client->events->count() }} events | @if($client->is_active ?? true) Active @else Inactive @endif |
|
| No clients found. | ||||