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

Available Balance

${{ number_format($user->balance, 2) }}

Deposit

Add funds to wallet

Withdraw

Cash out earnings

Transaction History

@forelse($transactions as $t) @empty @endforelse
Type Amount Method Status Date
{{ ucfirst($t->type) }} ${{ number_format($t->amount, 2) }} {{ $t->paymentMethod->name ?? 'N/A' }} {{ ucfirst($t->status) }} {{ $t->created_at->format('M d, Y H:i') }}
No transactions yet.
{{ $transactions->links() }}
@endsection