@extends('components.dashboard.layout.layout') @section('content') @include('components.alert')
@can('crm_workflow-create') Add New Work Flow @endcan
Workflow List

Review all workflow steps and manage their sorting order.

@forelse ($workflows as $flow) @empty @endforelse
Name Sort Actions

{{ str($flow->name)->replace('_', ' ')->lower()->ucfirst() }}

CRM workflow step

{{ $flow->sort ?? '—' }}
@can('crm_workflow-update') @endcan @can('crm_workflow-destroy')
@method('DELETE') @csrf
@endcan
No workflows found
There are no workflow records available yet.
@can('crm_workflow-create') @endcan
@if (method_exists($workflows, 'hasPages') && $workflows->hasPages())
{{ $workflows->links('pagination::bootstrap-5') }}
@endif
@endsection @push('scripts') @endpush