@extends('layouts.app') @section('title', 'Wallet') @push('styles') @endpush @section('content') {{-- Wallet Hero Card --}}
| Date | Type | Amount | Balance After | Description |
|---|---|---|---|---|
| {{ $entry->created_at->format('M d, Y h:i A') }} | {{ ucfirst($entry->type) }} | {{ in_array($entry->type, ['deposit', 'release']) ? '+' : '-' }}{{ $currency ?? '₦' }}{{ number_format(abs($entry->amount), 2) }} | {{ $currency ?? '₦' }}{{ number_format($entry->balance_after, 2) }} | {{ Str::limit($entry->description, 40) }} |
No transaction history yet.