@extends('admin.layouts.app') @section('panel') @if (request()->routeIs('admin.withdraw.data.all') || request()->routeIs('admin.withdraw.method')) @include('admin.withdraw.widget') @endif
@lang('Driver') @lang('Gateway | Transaction') @lang('Initiated') @lang('Amount') @lang('Conversion') @lang('Status') @lang('Action') @forelse($withdrawals as $withdraw)
{{ showDateTime($withdraw->created_at) }}
{{ diffForHumans($withdraw->created_at) }}
{{ 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') @empty @endforelse
@if ($withdrawals->hasPages()) {{ paginateLinks($withdrawals) }} @endif
@endsection