@extends('backEnd.master') @section('title') @lang('wallet::wallet.wallet_report') @endsection @section('mainContent')

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'route' => 'wallet.wallet-report-search', 'method' => 'POST']) }}
{{ Form::close() }}
@if (isset($walletReports)) @foreach ($walletReports as $key=>$walletReport) @endforeach @endif
@lang('common.sl') @lang('common.name') @lang('common.status') @lang('wallet::wallet.apply_date') @lang('wallet::wallet.approve_date')
{{$key+1}} {{@$walletReport->userName->full_name}} @if ($walletReport->status == 'pending') @elseif ($walletReport->status == 'approve') @else @endif {{dateConvert($walletReport->created_at)}} {{dateConvert($walletReport->updated_at)}}
@endsection @include('backEnd.partials.data_table_js', ['i' => true]) @include('backEnd.partials.date_range_picker_css_js')