@extends('layouts.user') @section('title') @lang('Withdraw History') @endsection @section('breadcrumb')

@lang('Withdraw History')

@endsection @section('content')
@forelse ($withdrawals as $item) @empty @endforelse
@lang('Transaction') @lang('Amount') @lang('Charge') @lang('Total Amount') @lang('Method Name') @lang('Status') @lang('Date')
{{$item->trx}} {{numFormat($item->amount)}} {{$item->currency->code}} {{numFormat($item->charge)}} {{$item->currency->code}} {{numFormat($item->total_amount)}} {{$item->currency->code}} {{$item->method->name}} @if($item->status == 1) @lang('Accepted') @elseif($item->status == 2) @lang('Rejected') @else @lang('Pending') @endif {{dateFormat($item->created_at)}}
@lang('No data found!')
@endsection @push('script') @endpush