@extends('layouts.agent')
@section('title')
@lang('Withdraw History')
@endsection
@section('breadcrumb')
@lang('Withdraw History')
| @lang('Transaction ID') | @lang('Amount') | @lang('Charge') | @lang('Total Amount') | @lang('Method Name') | @lang('Status') | @lang('Date') | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{$item->trx}} | {{amount($item->amount,$item->currency->type,2)}} {{$item->currency->code}} | {{amount($item->charge,$item->currency->type,2)}} {{$item->currency->code}} | {{amount($item->total_amount,$item->currency->type,2)}} {{$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!') | |||||||||||