@extends('front_end.layouts.home') @section('title', $category->name . ' Games') @section('content')

{{ $category->name }} Games

{{ $games->total() }} games available

@if($category->description)

{{ $category->description }}

@endif
@forelse($games as $game)
@include('front_end.pages.games.partials.game_card', ['game' => $game])
@empty
No games found in this category. Please check back later.
@endforelse
{{ $games->links('pagination::bootstrap-5') }}
@endsection