@extends('layouts.dashboard') @section('title', 'Transaction History - PangoQ') @section('content')
| 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 | |||||