@extends('layouts.app') @section('content')

Welcome Back, {{ Auth::user()->name }}!

Current Balance

${{ number_format($wallet->balance, 2) }}

Total Deposited

${{ number_format($transactions->where('type', 'deposit')->where('status', 'completed')->sum('amount'), 2) }}

Total Withdrawn

${{ number_format($transactions->where('type', 'withdrawal')->where('status', 'completed')->sum('amount'), 2) }}

Transaction History
@foreach($transactions as $transaction) @endforeach
# Type Amount Status Date
{{ $transaction->id }} {{ ucfirst($transaction->type) }} ${{ number_format($transaction->amount, 2) }} {{ ucfirst($transaction->status) }} {{ $transaction->created_at->format('d M Y, h:i A') }}
@endsection