@php
$defaultModels = $aiEngine->getDefaultModels($setting, $settings_two);
$modelsWithoutDefault = $aiEngine->getListableActiveModels($setting, $settings_two);
@endphp
@foreach ($defaultModels as $defaultModel)
{{ $defaultModel->tooltipHowToCalc() }}
@endforeach
@if ($modelsWithoutDefault->count() > 0)
{{ __('View All') }}
@lang('These model credits listed below will not be visible to the user and cannot be used until the model is set as the default in the related settings page.')
@foreach ($modelsWithoutDefault as $entity)
{{ $entity->key->tooltipHowToCalc() }}
@endforeach
@endif
@endif
@endforeach