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

Withdrawal requests

@foreach($withdrawals as $w) @endforeach
UserAmountFeeStatusActions
{{ $w->wallet->user->email ?? '-' }}{{ $w->amount }}{{ $w->fee }}{{ $w->status }} @if($w->status==='pending')
@csrf
@csrf
@csrf
@endif
@endsection