@extends('admin.layouts.app') @section('panel') @include('admin.components.tabs.withdrawal')
@if( request()->routeIs('admin.withdraw.log') || request()->routeIs('admin.withdraw.method') || request()->routeIs('admin.users.withdrawals') || request()->routeIs('admin.users.withdrawals.method') )
@endif
@forelse($withdrawals as $withdraw) @php $details = ($withdraw->withdraw_information != null) ? json_encode($withdraw->withdraw_information) : null; @endphp @empty @endforelse
@lang('Gateway') @lang('Created at') @lang('User') @lang('Amount') @lang('Conversion') @lang('Status') @lang('Action')
{{ __($withdraw->method->name ?? '') }} {{ showDateTime($withdraw->created_at) }} {{ $withdraw->user->fullname }} {{ showAmount($withdraw->amount - $withdraw->charge) }} {{ __($general->cur_text) }} {{ showAmount($withdraw->final_amount) }} {{ __($withdraw->currency) }} @php echo $withdraw->statusBadge @endphp
{{ __($emptyMessage) }}
@if ($withdrawals->hasPages()) @endif
@endsection @push('breadcrumb-plugins')
@endpush @push('style') @endpush