@extends('admin.layouts.master') @section('contents')
@include('admin.withdrawals.search_form')
@forelse($withdrawals as $withdrawal) @empty @endforelse
# {{trans('User')}} {{ __('Identity verified') }} {{trans('Amount')}} {{trans('Payment Method')}} {{trans('Status')}} {{trans('Date')}} {{trans('Actions')}}
{{$withdrawal->id}} {{$withdrawal->user->name}} @if($withdrawal->user?->hasVerifiedIdentity()) {{ __('Verified') }} @else {{ __('Not verified') }} @endif ${{number_format($withdrawal->amount, 2)}} {{ucfirst($withdrawal->payment_method)}} {{ucfirst($withdrawal->status)}} {{$withdrawal->created_at->format('M j, Y')}}
{{$withdrawal->created_at->format('g:i A')}}
@if($withdrawal->status === 'pending')
@csrf
@endif
{{__('No withdrawal requests found.')}}
@include('admin.components.advanced-pagination', ['paginator' => $withdrawals])
@endsection @section('scripts') @include('admin.partials.reject-reason-field-scripts') @endsection