@extends('adminlte::page') @section('title', 'Finance Dashboard') @section('content_header')

Invoices Pending Payment

@stop @section('content')

Invoices Ready for Payment

@foreach($invoices as $invoice) @endforeach
# Budget Item Budget Amount (TZS) Status Actions
{{ $loop->iteration }} {{ $invoice->budgetItem->item ?? '-' }} #{{ $invoice->budgetItem->budget->id ?? '-' }} {{ number_format($invoice->amount, 2) }} {{ ucfirst(str_replace('_',' ',$invoice->status)) }}
@csrf
@stop