@extends("layouts.admin") @section("header", "Clients Management") @section("content")

Clients

Add New Client
@forelse ($clients as $client) @empty @endforelse
ID Name Contact Email Active Actions
{{ $client->id }} {{ $client->name }} {{ $client->contact_email }} @if($client->is_active) Yes @else No @endif id) }}" class="inline-flex items-center px-3 py-1.5 text-xs bg-indigo-600 text-white font-medium rounded hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition-colors duration-200 ease-in-out">View id) }}" class="inline-flex items-center px-3 py-1.5 text-xs bg-yellow-600 text-white font-medium rounded hover:bg-yellow-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500 transition-colors duration-200 ease-in-out">Edit
id) }}" method="POST" class="inline-block" onsubmit="return confirm('Are you sure you want to delete this client?');"> @csrf @method("DELETE")
No clients found.
@if($clients->hasPages())
{{ $clients->links() }}
@endif
@endsection