@extends('layouts.admin') @section('title', 'Withdrawal Logs') @section('content')
@forelse($withdrawals as $w) @empty @endforelse
IDUserNetworkAddressAmountStatusDateActions
{{ $w->id }} {{ $w->user->name }} {{ $w->network }} {{ $w->wallet_address }} ${{ number_format($w->amount, 2) }} {{ $w->status->label() }} {{ $w->created_at->format('Y-m-d H:i') }} @if($w->status === \App\Enums\RecordStatus::Pending)
@csrf
@csrf
@else No actions @endif
No withdrawals
{{ $withdrawals->links() }}
@endsection