@extends('layouts.app')
@section('title','Approval Inbox')
@section('crumbs','Approval Inbox')
@section('content')
⏳ Pending approvals
| Document | No. | Requested by | When | Actions |
@forelse($pending as $a)
| {{ $types[$a->document_type]['label'] ?? $a->document_type }} |
{{ $a->document_no }} | {{ $a->requester->name ?? '' }} | {{ $a->created_at->format('d M Y H:i') }} |
|
@empty| Inbox zero. Nothing awaiting approval. ✓ |
@endforelse
{{ $pending->links() }}
Recent decisions
| Document | No. | Decision | By | When | Remarks |
@forelse($history as $a)| {{ $types[$a->document_type]['label'] ?? $a->document_type }} | {{ $a->document_no }} |
{{ $a->status }} | {{ $a->decider->name ?? '' }} |
{{ $a->decided_at?->format('d M Y H:i') }} | {{ $a->remarks }} |
@empty| No history yet. |
@endforelse
@endsection