@if (session('success'))
{{ session('success') }}
@endif
{{ __('Workspace') }}

{{ __('AI Call') }} {{ __('Assistants') }}

{{ __('Voice agents that answer phone calls — configure once, log every call.') }}

{{ __('Total') }}
{{ $counts['all'] }}
{{ __('Live') }}
{{ $counts['live'] }}
{{ __('Drafts') }}
{{ $counts['draft'] }}
{{ __('Paused') }}
{{ $counts['paused'] }}
{{ __('Name') }}
{{ __('Provider · Voice') }}
{{ __('Tools') }}
{{ __('Calls 24h') }}
{{ __('Actions') }}
@forelse ($assistants as $a)
{{ $a->status }} {{ $a->name }}
{{ $a->slug }}
{{ $a->ai_model }}
{{ $a->voice_provider }}{{ $a->voice_id ? ' · ' . $a->voice_id : '' }}
{{ $a->tools_count }}
{{ \App\Models\AiCallLog::where('assistant_id', $a->id)->where('started_at', '>=', now()->subDay())->count() }}
@csrf
Edit
@csrf
@csrf @method('DELETE')
@empty
{{ __('No call assistants yet') }}

{{ __('Configure your first voice AI. The 5-step wizard covers identity, intelligence, tools, voice, and recording in about 3 minutes.') }}

Create assistant
@endforelse
{{ __('Showing') }} {{ $assistants->count() }} of {{ $assistants->total() }}
@if ($assistants->hasPages())
{{ $assistants->links() }}
@endif