@extends('dashboard') @section('page-title', 'AI Agents') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($agents as $agent)
{{ ucfirst($agent->status) }}

{{ $agent->name }}

{{ Str::limit($agent->description, 120) }}

{{ $agent->model_type }}
{{ number_format(rand(100, 10000)) }} Requests
${{ number_format($agent->estimateMonthlyCost(), 2) }} Est. Monthly
@empty

No AI Agents Yet

You haven't created any AI agents yet. Get started by creating your first agent.

Create Your First Agent
@endforelse
@endsection @push('styles')