@extends('layouts.master') @section('page-title'){{ __('Casino Games') }}@endsection @section('menu'){{ __('Games') }}@endsection @section('sub-menu'){{ __('Casino Games') }}@endsection @section('content')

@csrf
{!! Form::select('perPage', Config::get('globalvar.perpage'), null, ['class' => 'form-control']) !!}
@if (getenv('APP_MARKET') == 'it')
@endif
{!! Form::select('statusId', [null => "All", '1' => "Active", '0' => "Inactive"] , Request::get('statusselect'), ['class' => 'form-control','id'=>'statusselect']) !!}
{!! Form::select('checksumId', [null => "All", '0' => "OK", '1' => "Error"] , Request::get('checksumselect'), ['class' => 'form-control','id'=>'checksumselect']) !!}
@include('partial.tables.games.casino-games-table')
@endsection @section('script') @endsection