@extends('adminlte::page') @section('title', 'Pending Budget Approvals') @section('content_header')

Pending Budget Approvals

@stop @section('content')
Total Pending {{ $pendingBudgets->count() }}

Pending Budgets List

@forelse($pendingBudgets as $budget) @empty @endforelse
# Note / Title Department Total Amount (TZS) Submitted By Submitted At Actions
{{ $loop->iteration }} {{ $budget->note ?? '-' }} {{ $budget->department->name ?? '-' }} {{ number_format($budget->total_amount, 2) }} {{ $budget->staff->name ?? '-' }} {{ $budget->created_at->format('d M Y') }} View Approve {{-- Optional: Decline action --}}
@csrf
No pending budgets found.
@stop