@extends('front_end.layouts.home') @section('title', 'Search Games') @section('content')

Search Games

Reset

Search Results ({{ $games->total() }} games found)

@forelse($games as $game)
@include('front_end.pages.games.partials.game_card', ['game' => $game])
@empty
No games found matching your criteria. Try adjusting your search parameters.
@endforelse
{{ $games->links('pagination::bootstrap-5') }}
@endsection