@extends('layouts.user') @section('title', 'Wallet Balance') @section('content')

Wallet Balance

Available Balance

{{ number_format($wallet->availableBalance(), 4) }}

Locked (pending withdrawal)

{{ number_format($wallet->locked_balance, 4) }}

Wallet Address

{{ $wallet->wallet_address ?? 'Not assigned' }}

Deposit Withdraw
@endsection