@extends('layouts.game') @section('content') @if (!$id)
@php $notices = \App\Models\Notice::where('status', 1) ->where(function ($q) { $q->whereNull('start_date')->orWhere('start_date', '<=', now()); }) ->where(function ($q) { $q->whereNull('end_date')->orWhere('end_date', '>=', now()); }) ->get(); @endphp @if ($notices->count())
📢 Notice:
@foreach ($notices as $notice) {{ $notice->title }}: {{ $notice->message }}   |   @endforeach
@else
📢 Notice:
No notices available
@endif @if (Auth::check())
@foreach ($games as $item) @endforeach
@else
All ALL Bonus Games BONUS GAMES Blackjack BLACKJACK Andar Bahar ANDAR BAHAR Easy Wins EASY WINS Baccarat BACCARAT Crash Games CRASH GAMES Dragon Tiger DRAGON TIGER Poker POKER Roulette ROULETTE Sic Bo SIC BO
@foreach ($games as $game) @endforeach
@endif
@else

{{ $games[0]->domain ?? 'Games' }}

@foreach ($games as $game) @endforeach
@endif @endsection @section('js') @endsection @section('css') @endsection