@extends('layouts.app') @section('title', 'Approval Instances') @section('content')
Total Records
Pending
Approved
Rejected
| # | Reference | Workflow | Initiated By | Status | Current Step | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ $instances->firstItem() + $index }} |
{{ $instance->record_number ?? 'N/A' }}
{{ $instance->record_title ?? 'Untitled' }}
|
@if($instance->workflow) {{ $instance->workflow->workflow_name }} @else N/A @endif | {{ $instance->initiatedBy->name ?? 'System' }} | @switch($instance->status) @case('PENDING') Pending @break @case('IN_PROGRESS') In Progress @break @case('APPROVED') Approved @break @case('REJECTED') Rejected @break @default {{ $instance->status }} @endswitch | @if($instance->current_step) Step {{ $instance->current_step }} @else - @endif | {{ $instance->created_at ? $instance->created_at->format('d M Y H:i') : 'N/A' }} | View |