@extends('user.layouts.category_game_layout')
@php
$cardStyle = $siteConfig['ui']['card_style'] ?? 'default';
$containerClass = $siteConfig['layout']['container_style'] ?? 'container';
$heroTitle = $category->name ?? 'الألعاب';
$heroSubtitle = 'اختر اللعبة التي تريدها';
@endphp
@if (isset($category->name))
@section('title')
{{ $category->name }}
@endsection
@endif
@section('page_header')
@endsection
@section('category_game_content')
@if($cardStyle === 'modern')
{{-- Modern Card Style (Mega/Kaiali) --}}
@foreach ($games as $game)
@include('user.layouts.partials.cards._card-modern', [
'item' => $game,
'route' => route('game.show', $game->slug),
'isActive' => $game->isActive,
'showFavorite' => true,
])
@endforeach
@else
{{-- Default Card Style (Syria) --}}
@foreach ($games as $game)
@include('user.layouts.partials.cards._card-default', [
'item' => $game,
'route' => route('game.show', $game->slug),
'isActive' => $game->isActive,
'showFavorite' => true,
])
@endforeach
@endif
@endsection