@extends('user.layouts.category_game_layout') @php $cardStyle = $siteConfig['ui']['card_style'] ?? 'default'; $containerClass = $siteConfig['layout']['container_style'] ?? 'container'; $heroTitle = 'مرحباً بك'; $heroSubtitle = 'اختر القسم الذي تريده'; @endphp @section('category_game_content')
@if($cardStyle === 'modern') {{-- Modern Card Style (Mega/Kaiali) --}}
@foreach ($categories as $category) @include('user.layouts.partials.cards._card-modern', [ 'item' => $category, 'route' => route('category.games', $category), 'isActive' => $category->isActive ]) @endforeach
@else {{-- Default Card Style (Syria) --}}
@foreach ($categories as $category) @include('user.layouts.partials.cards._card-default', [ 'item' => $category, 'route' => route('category.games', $category), 'isActive' => $category->isActive ]) @endforeach
@endif
@endsection