Files
ladill-queue/resources/views/qms/workflows/show.blade.php
T
isaaccladandCursor 89300fc6d6
Deploy Ladill Queue / deploy (push) Successful in 43s
Drop heroes from analytics pages and remove bordered show cards.
Analytics, Reports, Feedback, and Branches use simple headers again;
report and related show views use shadow panels instead of card borders.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-06 08:21:35 +00:00

22 lines
1.1 KiB
PHP

<x-app-layout :title="$workflow->name">
<div class="mb-6">
<a href="{{ route('qms.workflows.index') }}" class="text-sm text-indigo-600"> Workflows</a>
<h1 class="mt-2 text-2xl font-semibold">{{ $workflow->name }}</h1>
@if ($workflow->description)<p class="mt-1 text-sm text-slate-600">{{ $workflow->description }}</p>@endif
</div>
<div class="rounded-2xl bg-white p-6 shadow-sm">
<h2 class="text-sm font-semibold uppercase text-slate-500">Steps</h2>
<ol class="mt-4 space-y-3">
@foreach ($workflow->steps as $step)
<li class="flex items-center gap-3 rounded-lg bg-slate-50 px-4 py-3">
<span class="flex h-8 w-8 items-center justify-center rounded-full bg-indigo-50 text-sm font-semibold text-indigo-700">{{ $step->sort_order }}</span>
<div>
<div class="font-medium">{{ $step->name }}</div>
<div class="text-sm text-slate-500">{{ $step->serviceQueue?->name ?? 'No queue linked' }}</div>
</div>
</li>
@endforeach
</ol>
</div>
</x-app-layout>