@extends('layouts.admin') @section('title', 'Withdrawals') @section('content')

Withdrawals

@foreach ($withdrawals as $w) @endforeach
UserAmountTo AddressStatusDate
{{ $w->user->name }} {{ number_format($w->amount, 4) }} {{ $w->to_address }} {{ $w->status }} {{ $w->created_at->format('d M Y H:i') }} @if ($w->status === 'pending')
@csrf
@csrf
@endif
{{ $withdrawals->links() }}
@endsection