@if ($action === 'list')
@else
@endif
Game List
@if(session()->has('message'))
{{ $games->links() }}
{{ session('message') }}
@endif
| Image | Name | Casino | Type | Providers | Category | RTP | Status | Action |
|---|---|---|---|---|---|---|---|---|
|
@if($game->image)
|
{{ $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 |
{{ $action === 'create' ? 'Add Game' : 'Edit Game' }}
@include('livewire.admin.partials.game-form')