@extends('layouts.app') @section('title', 'Financial Approvals') @section('content')
No pending financial entries require approval.
| Type | Reference | Date | Amount | Narration | Created By | Submitted | Actions |
|---|---|---|---|---|---|---|---|
| @php $typeColors = [ 'journal_entry' => 'primary', 'payment' => 'success', 'purchase_payment' => 'info', 'contractor_payment' => 'warning', ]; @endphp {{ $item['type_label'] }} | {{ $item['reference'] ?? '#' . $item['id'] }} |
{{ $item['date'] ? \Carbon\Carbon::parse($item['date'])->format('d M Y') : '—' }} | ৳{{ number_format($item['amount'], 2) }} | {{ Str::limit($item['narration'], 40) }} | {{ $item['created_by'] }} | {{ $item['created_at'] ? \Carbon\Carbon::parse($item['created_at'])->diffForHumans() : '—' }} |
|