@extends(activeTemplate() .'layouts.user') @section('content')

{{__($page_title)}}

@if(count($withdraws) >0) @foreach($withdraws as $k=>$data) @if($data->method->type == $type) @endif @endforeach @else @endif
@lang('Transaction ID') @lang('Gateway') @lang('Amount') @lang('Status') @lang('Time')
{{$data->trx}} {{ $data->method->name }} {{formatter_money($data->amount)}} @if($type == 'money') {{$general->cur_text}} @endif @if($data->status == 0) @lang('Pending') @elseif($data->status == 1) @lang('Completed') @elseif($data->status == 2) @lang('Rejected') @endif {{date('d M, Y ', strtotime($data->created_at))}} {{date('h:i A', strtotime($data->created_at))}}
@lang('No results found')!
{{$withdraws->links()}}
@endsection @section('load-js') @stop @section('script') @stop