@extends('layouts.app') @section('content')
| ID | Client Name | Phone | Status | Actions | |
|---|---|---|---|---|---|
| {{ $client->id }} | {{ $client->first_name }} {{ $client->last_name }} | {{ $client->email }} | {{ $client->phone }} | @php $badgeColor = 'secondary'; if ($client->status == 'active') $badgeColor = 'success'; elseif ($client->status == 'suspended') $badgeColor = 'warning'; elseif ($client->status == 'blacklisted') $badgeColor = 'danger'; elseif ($client->status == 'inactive') $badgeColor = 'secondary'; @endphp {{ ucfirst($client->status) }} | Edit |
| No clients found. | |||||