@extends('user.layouts.app') @section('content')
Manage your funds and view transaction history.
Service Wallet
Available for Consultations
Total Spent
₹{{ number_format(auth()->user()->walletTransactions()->where('wallet_type', 'chat')->where('type', 'debit')->sum('amount'), 2) }}
Shopping Wallet
Available for AstroMall
Total Spent
₹{{ number_format(auth()->user()->walletTransactions()->where('wallet_type', 'shopping')->where('type', 'debit')->sum('amount'), 2) }}
| ID | Date | Description | Category | Type | Amount |
|---|---|---|---|---|---|
| #{{ $transaction->id }} |
{{ $transaction->created_at->format('d M, Y') }}
{{ $transaction->created_at->format('h:i A') }}
|
{{ $transaction->description }}
|
{{ ($transaction->wallet_type ?? 'chat') == 'chat' ? 'Services' : 'Shopping' }} | {{ $transaction->type }} | {{ $transaction->type == 'credit' ? '+' : '-' }}₹{{ number_format($transaction->amount, 2) }} |
|
No transactions found for this category |
|||||