@extends('eliteadmin::layouts.app') @section('title', 'Wallet') @section('page_class', 'page-wallet') @section('content') @if ($platformNotice ?? null) @endif @if ($wallet ?? null)
Platform Wallet Balance
{{ platform_money($wallet->balance, $wallet->currency) }}
Managed by Product Owner Platform
@else
No wallet balance recorded yet. Module purchases and top-ups from the Product Owner Platform appear here.
@endif
Transaction Ledger
@forelse ($ledger as $entry) @empty @endforelse
Date Type Amount Opening Closing Reference Description
{{ $entry->recorded_at->format('M j, Y H:i') }} {{ ucfirst($entry->type) }} {{ platform_money($entry->amount, $entry->currency) }} {{ number_format($entry->opening_balance, 2) }} {{ number_format($entry->closing_balance, 2) }} {{ $entry->reference_number }} {{ $entry->description ?? '—' }}
No wallet transactions yet. Module purchases and top-ups from the Product Owner Platform appear here.
@if ($ledger->hasPages()) @endif
@endsection