{{ __('Search Results') }}

@foreach($result as $type => $results) @if ($results->count())

{{ Str::plural($type) }}

@foreach($results as $hit) @component('components.global-search-result-' . Str::lower($type), [ 'result' => $hit, 'linkClass' => 'group/global-search-link flex flex-row gap-3 py-1.5 px-4 text-gray-900 dark:text-gray-100 hover:bg-gray-200 dark:hover:bg-gray-800 transition-colors duration-200 ease-in-out', ]) @endcomponent @endforeach
@endif @endforeach

{{ __("We couldn't find any content with that query. Please try again.") }}