@extends('admin.layouts.app') @section('panel')
@if (request()->routeIs('admin.withdraw.data.all') || request()->routeIs('admin.withdraw.method'))
@include('admin.withdraw.widget')
@endif
@forelse($withdrawals as $withdraw) @php $details = $withdraw->withdraw_information != null ? json_encode($withdraw->withdraw_information) : null; @endphp @empty @endforelse
@lang('Gateway | Transaction') @lang('Initiated') @lang('User') @lang('Amount') @lang('Conversion') @lang('Status') @lang('Action')
{{ __(@$withdraw->method->name) }}
{{ $withdraw->trx }}
{{ showDateTime($withdraw->created_at) }}
{{ diffForHumans($withdraw->created_at) }}
{{ $withdraw->user->fullname }}
@{{ $withdraw->user->username }}
{{ showAmount($withdraw->amount) }} - {{ showAmount($withdraw->charge) }}
{{ showAmount($withdraw->amount - $withdraw->charge) }}
{{ showAmount(1) }} = {{ showAmount($withdraw->rate, currencyFormat: false) }} {{ __($withdraw->currency) }}
{{ showAmount($withdraw->final_amount, currencyFormat: false) }} {{ __($withdraw->currency) }}
@php echo $withdraw->statusBadge @endphp @lang('Details')
{{ __($emptyMessage) }}
@if ($withdrawals->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @endpush