@extends('layouts.app') @section('content')
EARNINGS

Your earnings

Available balance₦{{number_format(auth()->user()->wallet_balance,2)}}
Payout threshold₦5,000

Withdraw

@csrf
@forelse($withdrawals as $w)
Withdrawal #{{$w->id}}{{$w->created_at->format('d M Y')}}
₦{{number_format($w->amount,2)}} · {{$w->status}}
@empty

No withdrawal history.

@endforelse
@endsection