@extends('layouts.app') @section('content') @php $map = [ 'hot' => ['icon' => 'icon-hot', 'label' => 'Hot'], 'exclusive' => ['icon' => 'icon-exclusive', 'label' => 'Exclusive'], 'new' => ['icon' => 'icon-new', 'label' => 'New'], ]; $type = strtolower($type ?? ''); if (!empty($type) && isset($map[$type])) { $current = $map[$type]; } elseif (!empty($currentProvider)) { $slug = strtolower($currentProvider->provider_slug ?? ''); $current = [ 'icon' => 'icon-' . preg_replace('/[^a-z0-9]/', '', $slug), 'label' => ucwords(strtolower($currentProvider->provider_name ?? $slug)), ]; } else { $current = [ 'icon' => 'icon-slot', 'label' => 'Arcade', ]; } @endphp
@include('desktop.partials.runningtext') @include('desktop.partials.breadcrumb')
{{-- ================= CAROUSEL ================= --}} @include('desktop.partials.pages.carousel-arcade')
{{-- ================= GAME GRID ================= --}}
@endsection