@extends("admin.admin_app") @section("content")
{!! Form::open(array('url' => 'admin/withdrawal','class'=>'app-search','id'=>'search','role'=>'form','method'=>'get')) !!} {!! Form::close() !!}
 
 
 
@foreach($list as $i => $transaction_data) @endforeach
{{trans('words.name')}} {{trans('words.email')}} {{trans('words.request_points')}} {{trans('words.amount')}} {{trans('words.request_date')}} {{trans('words.payout_date')}} {{trans('words.status')}} {{trans('words.action')}}
{{ $transaction_data->user->name }} {{ $transaction_data->user->email }} {{ $transaction_data->points }} {{html_entity_decode(getCurrencySymbols(getcong('currency_code')))}}{{$transaction_data->amount}}
(When withdrawal requested that time {{$transaction_data->request_one_points}} point(s) = {{html_entity_decode(getCurrencySymbols(getcong('currency_code')))}}{{$transaction_data->request_one_money}})
{{ date('M d Y h:i A',$transaction_data->request_date) }} @if($transaction_data->payout_date!=NULL) {{date('m-d-Y',$transaction_data->payout_date)}} @endif @if($transaction_data->status==1){{trans('words.complete')}} @else{{trans('words.pending')}}@endif @if($transaction_data->status==0) {{trans('words.pay_now')}} @endif
@include("admin.copyright")
@endsection