{{-- Shared table partial for both default and custom-store flow sections on /flows. Required: $flows Collection of Flow models $canManage boolean $allStores Collection of Store models for the Copy dropdown $tableTestKey string used as the `data-test` marker so the test suite can target each section --}}
| {{ __('Name') }} | {{ __('Scope') }} | {{ __('Status') }} | {{ __('Updated') }} | |
|---|---|---|---|---|
|
{{ $flow->name }}
@if ($flow->needs_review)
{{ $flow->slug }}
{{-- Source document trail. Imported flows
carry the original .docx / .xlsx filename
through `source_doc`; surfacing it in the
row helps operators trace a flow back to
the pack it came from without having to
open Edit. --}}
@if ($flow->source_doc)
{{ $flow->source_doc }}
@endif
|
@if ($flow->isDefault())
{{ $flow->category }}
@endif
|
|
{{ $flow->updated_at?->diffForHumans() }} |
@if ($canManage)
@if ($confirmingDeleteId === $flow->id)
@else
{{ __('Read-only') }}
@endif
|