@extends('layouts.app') @section('title', 'Balance History') @section('content')
| Type | Description | Amount | Balance After | Date |
|---|---|---|---|---|
| @if($transaction->type == 'credit') Credit @else Debit @endif | {{ $transaction->description }} | {{ $transaction->type == 'credit' ? '+' : '-' }}${{ number_format($transaction->amount, 2) }} | ${{ number_format($transaction->balance_after, 2) }} | {{ $transaction->created_at->format('M d, Y H:i') }} |
| No balance transactions found | ||||