@extends('layouts.master') @section('title', 'Clients List - Prolex Law Firm') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@forelse($clients as $client) @empty @endforelse
ID Client Name Type Email Phone Status Actions
{{ $client->id }} {{ $client->client_name }} {{ ucfirst($client->client_type) }} {{ $client->email ?? 'N/A' }} {{ $client->phone ?? 'N/A' }} {{ ucfirst($client->status) }} View Edit
@csrf @method('DELETE')
No clients found.
@endsection