@php $filters = ['All', \App\Enums\AITokenType::WORD->value]; @endphp @extends('panel.layout.settings') @section('title', __('AI Models')) @section('titlebar_actions', '') @section('settings')
@csrf

{{ __('Editing: AI Models') }}

{{ __('Only activated AI models are displayed here. Make sure to add your API Keys to use all AI Models (OpenAI, Gemini or Anthropic).') }} @php $index = 0; @endphp @foreach ($groupedAiModels as $category => $groupedAiModel) @php $formattedCategory = ucwords(str_replace('_', ' ', $category)); $index++; @endphp @foreach ($groupedAiModel as $aiModel) @foreach ($aiModel->tokens as $aiToken) View Included Pricing Plans
@foreach ($plans as $plan) @php $checked = $aiModel->aiFinance?->pluck('plan_id')?->toArray() ?: []; @endphp @endforeach
@endforeach @endforeach @endforeach @if ($app_is_demo) {{ __('Save') }} @else {{ __('Save') }} @endif
@endsection