Approvals Center — ProcureFlow Approvals
Pending Requests ({{ $pending->count() }})
Approval History
Pending Approvals
@forelse($pending as $p) @empty @endforelse
Procurement Requested On Your Role Current Stage Value Action
{{ $p->procurement->reference }}
{{ $p->procurement->title }}
{{ $p->created_at->format('M d, Y') }} {{ $p->role_label }} Stage {{ $p->procurement->current_stage }}
{{ $p->procurement->currency }} {{ number_format($p->procurement->estimated_value, 0) }}
Review & Decide
No pending approvals
Approval requests assigned to you will appear here.
@if($completed->count() > 0)
Recent History
@foreach($completed as $c) @endforeach
Procurement Decided Date Decision Comment
{{ $c->procurement->reference }}
{{ $c->procurement->title }}
{{ $c->decided_at?->format('M d, Y H:i') }} @if($c->status == 'approved') Approved @else Rejected @endif
{{ \Illuminate\Support\Str::limit($c->comment, 60) }}
@endif