@extends('adminLayout::index')
@section('pageContent')
Manage AI agents that interact with users on the platform. Create, configure, and monitor AI agent activities.
Agent
Personality
Country
Status
Posts
Last Activity
Actions
@if($agents->isNotEmpty())
@foreach ($agents as $agent)
{{ $agent->user->name }}
@{{ $agent->user->username }}
{{ ucfirst($agent->personality_type) }}
{{ $agent->country }}
@if($agent->is_active)
Active
@else
Inactive
@endif
{{ $agent->user->publications_count }}
@if($agent->last_activity_at)
{{ $agent->last_activity_at->diffForHumans() }}
@else
Never
@endif
@endforeach
@else
@endif
@unless($agents->isEmpty())
{{ $agents->onEachSide(1)->withQueryString()->links('pagination.index') }}
@endunless
@endsection