@extends('customer.dashboard.layout') @section('title', 'My Wallet') @section('content')
Manage your credits and view transaction history
Available Balance
credits
Total Credits Added
Total Credits Spent
| Date | Description | Source | Amount | Balance After | Related |
|---|---|---|---|---|---|
|
{{ $transaction->created_at->format('M d, Y') }}
{{ $transaction->created_at->format('g:i A') }}
|
{{ $transaction->description ?? 'Transaction' }}
@if($transaction->notes)
{{ $transaction->notes }} @endif |
{{ ucfirst($transaction->source) }} | {{ $transaction->type === 'credit' ? '+' : '-' }}{{ number_format($transaction->amount, 0) }} | {{ number_format($transaction->balance_after, 0) }} | @if($transaction->order) Order #{{ $transaction->order->order_number }} @elseif($transaction->booking) Booking #{{ $transaction->booking->booking_reference }} @elseif($transaction->subscription) Subscription @elseif($transaction->credit_package_id) Package @else - @endif |
Top Up: Purchase credit packages to add credits to your wallet
Use Credits: Credits can be used for bookings, purchases, and subscriptions
Track Everything: All transactions are recorded and can be viewed anytime