@extends('layouts.user')
@section('title', 'Wallet Balance')
@section('content')
Available Balance
{{ number_format($wallet->availableBalance(), 4) }}
Locked (pending withdrawal)
{{ number_format($wallet->locked_balance, 4) }}
Wallet Address
{{ $wallet->wallet_address ?? 'Not assigned' }}
@endsection