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

{{ trans('breadcrumbs.Main to Game Wallet Report') }}

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

{{ Form::label('USERNAME', trans('reports.Username'))}} {{ Form::text('USERNAME','', ['id' => 'USERNAME', 'class' => 'form-control', 'placeholder' => trans('reports.Username')]) }}
{{ Form::label('INTERNAL_REFERENCE_NO', trans('reports.Internal Reference No')) }} {{ Form::text('INTERNAL_REFERENCE_NO','', ['id' => 'INTERNAL_REFERENCE_NO', 'class' => 'form-control', 'placeholder' => trans('reports.Internal Reference No')]) }}
{{ Form::label('GAME_TYPE', trans('reports.Game Type')) }} {{ Form::select('GAME_TYPE', $gameType, '', ['class' => 'form-control select2','id' => 'GAME_TYPE']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}


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