{{ __('Search Results') }}
@if($q === '')
@foreach($results as $row)
@if($results->lastPage() > 1)
@endif
@endif
{{ __('Type a search term in the top bar.') }}
@elseif($results->total() === 0){{ __('No results found for ":query".', ['query' => $q]) }}
@else{{ __('Name') }}
{{ __('Section') }}
{{ __('Game') }}
{{ $row['name'] }}
{{ ucfirst((string) ($row['section'] ?? '-')) }}
{{ $row['game'] ?? '-' }}
@endforeach