@extends('layouts.master') @section('page-title'){{ __('Casino Players') }}@endsection @section('menu'){{ __('Financial') }}@endsection @section('sub-menu'){{ __('Casino Players') }}@endsection @section('content')
@csrf
@if(Auth::user()->hasRole("FullFinancial") || Auth::user()->hasRole("OperatorAdmin"))
@endif
{!! Form::select('games_product', array('all' => 'All', 'casino'=>'Casino','skill'=>'Skill', 'bingo' => 'Bingo'), Request::get('games_product'), ['class' => 'form-control','id'=>'games_product']) !!}
{!! Form::select('group_by', array(''=>'None','provider'=>'Provider'), Request::get('group_by'), ['class' => 'form-control','id'=>'group_by']) !!}
{!! Form::select('break_by', array(0=>'None','hour'=>'Hour', 'day'=>'Day', 'week'=>'Week', 'month'=>'Month'), Request::get('break_by'), ['class' => 'form-control','id'=>'break_by']) !!}
{!! Form::select('game_launch_type', array(''=>'All','widget'=>'Widget', 'lobby'=>'Lobby'), Request::get('game_launch_type'), ['class' => 'form-control','id'=>'game_launch_type']) !!}
@if (isset($casino_pLayers)) @include('financial/casino-players/table') @endif
@endsection @section('script') @endsection