@extends($theme.'frontend.layouts.master') @section('title',__('Withdraw History')) @section('content')
| {{__('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}} | @if($deposit->status == 0){{__('pending')}} | @elseif($deposit->status == 1){{__('complete')}} | @else{{__('rejected')}} | @endif{{$deposit->withdraw_id}} | {{$deposit->updated_at->format('d/m/y h:i A')}} |
|
{{__('No Data Found')}} |
||||||||