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

Pending Approvals

Back to Funds
@if(session('success'))
{{ session('success') }}
@endif @if($pendingTransactions->count() > 0)
@foreach($pendingTransactions as $transaction) @endforeach
Date Fund Type Description Amount Created By Actions
{{ $transaction->transaction_date->format('M d, Y') }} {{ $transaction->fund->name }} {{ ucfirst($transaction->type) }} {{ $transaction->description }} ${{ number_format($transaction->amount, 2) }} {{ $transaction->creator->name }}
@csrf @method('PATCH')
{{ $pendingTransactions->links() }}
@else

No Pending Approvals

All transactions have been processed.

@endif
@endsection