@php
$debounce = filament()->getGlobalSearchDebounce();
$keyBindings = filament()->getGlobalSearchKeyBindings();
$suffix = filament()->getGlobalSearchFieldSuffix();
@endphp
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::GLOBAL_SEARCH_START) }}
map(fn (string $keyBinding): string => str_replace('+', '-', $keyBinding))->implode('.') }}="document.getElementById($id('input')).focus()"
class="fi-input fi-input-has-inline-prefix"
/>
@if ($results !== null)
@if ($results->getCategories()->isEmpty())
{{ __('filament-panels::global-search.no_results_message') }}
@else
@foreach ($results->getCategories() as $group => $groupedResults)
-
@endforeach
@endif
@endif
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::GLOBAL_SEARCH_END) }}