@extends('layouts.dashboard') @section('title', 'Transaction History - PangoQ') @section('content')

Transaction History

Add Funds

All Transactions

@forelse ($transactions as $transaction) @empty @endforelse
Date Type Amount Status Trip Payment Method
{{ $transaction->created_at->format('M j, Y, g:i A') }} {{ ucfirst($transaction->type) }} ${{ number_format($transaction->amount, 2) }} {{ ucfirst($transaction->status) }} {{ $transaction->wallet->trip->title }} {{ ucfirst($transaction->payment_method ?? 'N/A') }}
No transactions found
{{ $transactions->links() }}
@endsection