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

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

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

{{ Form::label('TABLE_ID', trans('tournament.Table ID')) }} {{ Form::text('TABLE_ID','', ['id' => 'TABLE_ID', 'class' => 'form-control', 'placeholder' => trans('tournament.Table ID')]) }}
{{ Form::label('GAME_ID', trans('tournament.Game ID')) }} {{ Form::text('GAME_ID','', ['id' => 'GAME_ID', 'class' => 'form-control','placeholder' => trans('tournament.Game ID')]) }}
{{ Form::label('GAME_TYPE', trans('tournament.Game Type')) }} {{ Form::select('GAME_TYPE', $tournamentType, '', ['class' => 'form-control select2','placeholder' => trans('reports.Select option'), 'id' => 'GAME_TYPE']) }}
{{ Form::label('PLAYER_ID', trans('tournament.Player ID')) }} {{ Form::text('PLAYER_ID','', ['id' => 'PLAYER_ID', 'class' => 'form-control','placeholder' => trans('tournament.Player ID')]) }}
{{ Form::label('HAND_ID', trans('tournament.Hand ID')) }} {{ Form::text('HAND_ID','', ['id' => 'HAND_ID', 'class' => 'form-control','placeholder' => trans('tournament.Hand ID')]) }}
{{ Form::label('CURRENCY_TYPE', trans('tournament.Currency Type')) }} {{ Form::select('CURRENCY_TYPE', $currencyType, '', ['class' => 'form-control select2','placeholder' => trans('reports.Select option'), 'id' => 'CURRENCY_TYPE']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}


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