@if ($action === 'list')

Game List

@if(session()->has('message'))
{{ session('message') }}
@endif @foreach($games as $game) @endforeach
Image Name Casino Type Providers Category RTP Status Action
@if($game->image) {{ $game->name }} @else No Image @endif {{ $game->name }} {{ $game->casino?->casino_name }} {{ $game->type?->title }} {{ $game->game_provider?->name }} {{ $game->game_category == 1 ? 'Free' : 'Featured' }} {{ $game->return_to_player }}% @if($game->is_active) Active @else Inactive @endif @if($game->is_active) @else @endif
{{ $games->links() }}
@else

{{ $action === 'create' ? 'Add Game' : 'Edit Game' }}

@include('livewire.admin.partials.game-form')
@endif