@extends('layouts.app') @section('title', 'Approvals') @section('content')
Decision workspace

Approval inbox

Review multi-level workflow requests awaiting your decision.

{{ $requests->count() }} pending
@forelse($requests as $approval)
{{ $approval->type }}

{{ $approval->summary }}

Requested by {{ $approval->requester }} ยท {{ $approval->submitted_at->diffForHumans() }}

@if($approval->amount)${{ number_format($approval->amount,2) }}@endif
Stage {{ $approval->stage }} of {{ $approval->total_stages }}Status {{ $approval->status }}
@csrf
@empty

Inbox cleared

There are no pending requests requiring your action.

@endforelse
@endsection