@extends('layouts.app') @section('title', 'My Wallet') @push('styles') @endpush @section('content') @php $totalEarned = $user->transactions()->where('type','earn')->sum('coins'); $totalSpent = $user->transactions()->whereIn('type',['spend','donate'])->sum('coins'); $totalWithdrawn = $user->withdrawals()->where('status','approved')->sum('naira_amount'); $hasPin = (bool) $user->transaction_pin; @endphp
Manage your Nabola Coins and withdrawals
No withdrawals yet.
@endforelseNo transactions yet.
@endforelse| Type | Amount | Description | Status | Date |
|---|---|---|---|---|
| {{ str_replace('_',' ',$t->type) }} | {{ $isEarn ? '+' : '-' }}{{ number_format($t->coins) }} NC | {{ Str::limit($t->description, 50) }} | {{ ucfirst($t->status ?? 'completed') }} | {{ $t->created_at->format('d M Y, H:i') }} |
| No transactions yet. | ||||