@extends('layouts.master') @section('content')

{{ trans('breadcrumbs.Game Hand History') }}

{{ trans('layout.Filter') }}

{{ Form::label('TABLE_ID', trans('game.Table ID')) }} {{ Form::text('TABLE_ID','', ['id' => 'TABLE_ID', 'class' => 'form-control', 'placeholder' => trans('game.Table ID'),'maxlength' => 25]) }}
{{ Form::label('GAME_ID', trans('game.Game ID')) }} {{ Form::text('GAME_ID','', ['id' => 'GAME_ID', 'class' => 'form-control','placeholder' => trans('game.Game ID'), 'maxlength' => 25]) }}
{{ Form::label('GAME_TYPE', trans('game.Game Type')) }} {{ Form::select('GAME_TYPE', $gameType, '', ['class' => 'form-control select2','placeholder' => trans('reports.Select option'), 'id' => 'GAME_TYPE']) }}
{{ Form::label('PLAYER_ID', trans('game.Player ID')) }} {{ Form::text('PLAYER_ID','', ['id' => 'PLAYER_ID', 'class' => 'form-control','placeholder' => trans('game.Player ID'),'maxlength' => 25]) }}
{{ Form::label('HAND_ID', trans('game.Hand ID')) }} {{ Form::text('HAND_ID','', ['id' => 'HAND_ID', 'class' => 'form-control','placeholder' => trans('game.Hand ID'),'maxlength' => 25]) }}
{{ Form::label('CURRENCY_TYPE', trans('game.Currency Type')) }} {{ Form::select('CURRENCY_TYPE', $currencyType, '', ['class' => 'form-control select2','placeholder' => trans('reports.Select option'), 'id' => 'CURRENCY_TYPE']) }}
{{ Form::label('STAKE_AMOUNT', trans('game.Stake Amount')) }} {{ Form::text('STAKE_AMOUNT','', ['id' => 'STAKE_AMOUNT', 'class' => 'form-control', 'placeholder' => trans('game.Stake'),'maxlength' => 10]) }}
{{ Form::label('STATUS', trans('game.Status')) }} {{ Form::select('STATUS', $status, '8', ['class' => 'form-control select2', 'id' => 'STATUS']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}


@endsection @section('javascript') @include('datatablejs') @stop