@extends('layouts.app') @section('content')
| Date | Fund | Type | Description | Expense Item | Supplier | Amount | Created By |
|---|---|---|---|---|---|---|---|
| {{ $transaction->transaction_date->format('M d, Y') }} | {{ $transaction->fund?->name }} {{ $transaction->type }} | {{ ucfirst($transaction->type) }} | {{ $transaction->description }} | {{ $transaction->expenseItem->name ?? '-' }} | {{ $transaction->supplier->name ?? '-' }} | ${{ number_format($transaction->amount, 2) }} | {{ $transaction->creator->name }} |
Try adjusting your filter criteria.