@extends('app.template') @section('title', 'Workflows Management - COLI') @section('content')
@if (session('success')) @endif @if (session('error')) @endif @if ($errors->any()) @endif
Reset
@forelse ($workflows as $workflow) @empty @endforelse
# Name Tags Category Description Actions
{{ $loop->iteration }} {{ $workflow->name }} {{ $workflow->tags }} {{ ucfirst($workflow->category) }} {{ Str::limit($workflow->description, 50) }}
Edit Download
@csrf @method('DELETE')
No workflows found
{{ $workflows->withQueryString()->links('pagination::bootstrap-5') }}
@endsection