@php $solutions = app(\Spatie\LaravelErrorSolutions\Actions\GetSolutionsForLatestThrowableAction::class)->execute(); @endphp @if(count($solutions))
@foreach($solutions as $solution)

{{ $solution->getSolutionTitle() }}{{ str_ends_with($solution->getSolutionTitle(), '.') ? '' : '.' }}

{{ $solution->getSolutionDescription() }}

@if(count($solution->getDocumentationLinks()))

Read more

@endif @if(config('error-solutions.enable_runnable_solutions')) @if($solution instanceof \Spatie\ErrorSolutions\Contracts\RunnableSolution)

{{ $solution->getSolutionActionDescription() }}

The solution was executed.

@endif @endif @if(method_exists($solution, 'solutionProvidedByName'))

@if(method_exists($solution, 'solutionsProvidedByLink')) Solution provided by {{ $solution->solutionProvidedByName() }}. @else Solution provided by {{ $solution->solutionProvidedByName() }}. @endif @if($solution instanceof \Spatie\ErrorSolutions\Solutions\OpenAi\OpenAiSolution) This solution was generated by AI. It might not be 100% accurate. @endif

@endif @if(!$loop->last)
@endif @endforeach
@endif