@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'
],
];
$current = $map[$type] ?? [
'icon' => 'icon-slot',
'label' => ucfirst($type)
];
@endphp
@include('desktop.partials.runningtext')
@include('desktop.partials.breadcrumb')
@include('desktop.partials.pages.slot-carousel')
@if($type == 'hot')
@include('desktop.partials.category.hot')
@elseif($type == 'exclusive')
@include('desktop.partials.category.exclusive')
@elseif($type == 'new')
@include('desktop.partials.category.new')
@endif
@endsection