@extends('layouts.app') @section('title', 'Workflow Management') @section('content')

Approval Workflows

New Workflow
@if(session('success')) @endif @if(session('error')) @endif
@forelse($workflows as $workflow) @empty @endforelse
# Name Description Model Type Steps Status Created Actions
{{ $loop->iteration }} {{ $workflow->name }} {{ Str::limit($workflow->description, 50) }} {{ class_basename($workflow->model_type) }} {{ $workflow->steps_count }} {{ $workflow->is_active ? 'Active' : 'Inactive' }} {{ $workflow->created_at->format('Y-m-d') }}
@csrf @method('DELETE')

No workflows found

Create First Workflow
@endsection