@extends($theme.'frontend.layouts.master') @section('title',__('Withdraw History')) @section('content')

{{__('Withdraw Logs')}}

@forelse($deposits as $deposit) @if($deposit->status == 0) @elseif($deposit->status == 1) @else @endif @empty @endforelse
{{__('Gateway Name')}} {{__('Amount')}} {{__('Charge')}} {{__('Method Cur Amount')}} {{__('Status')}} {{__('Transaction ID')}} {{__('Time')}}
{{__($deposit->method_name)}} {{round($deposit->amount, 8)}} {{$general->currency}} {{round($deposit->charge, 8)}} {{$general->currency}} {{round($deposit->amount*$deposit->method_rate, 8)}} {{$deposit->method_cur}}{{__('pending')}}{{__('complete')}}{{__('rejected')}}{{$deposit->withdraw_id}} {{$deposit->updated_at->format('d/m/y h:i A')}}

{{__('No Data Found')}}

{{$deposits->links()}}
@endsection