@extends('layouts.app') @section('content')

🖥️ ICT Agents

+ Add New ICT Agent
{{-- Success Message --}} @if(session('success')) @endif {{-- Search Bar --}}
@if($ictAgents->isEmpty())

No ICT Agents found.

@else
@foreach($ictAgents as $agent) {{-- Actions --}} @endforeach
# Name Email Center Phone Created At Actions
{{ $loop->iteration }} {{ $agent->name }} {{ $agent->email ?? 'N/A' }} {{ $agent->center->name ?? '—' }} {{ $agent->phone ?? 'N/A' }} {{ $agent->created_at ? $agent->created_at->format('Y-m-d') : '-' }} {{-- Hide actions for admins --}} @if($agent->role !== 'admin') Edit
@csrf @method('DELETE')
@else Admin @endif
{{-- Pagination --}}
{{ $ictAgents->links() }}
@endif
{{-- Custom Styling --}} @endsection