@php
$statusAction = trim((string) ($form->workflow_status_action ?? ''));
$statusFor = trim((string) ($form->workflow_status_for ?? ''));
if ($statusAction === '') {
$statusAction = (string) ($pcListStatusBadgeLabel ?? '—');
}
@endphp
{{ $statusAction }}
@if ($statusFor !== '')
for: {{ $statusFor }}
@endif
@if($showPcModifiedLabel ?? false)
Modified
@endif
@if($showPcRevisedLabel ?? false)
{{ $pcRevisedLabel ?? 'Revised' }}
@endif
@php $pciListKindLabel = \App\Models\PC\PcForm::kindLabel($form->pc_form_kind ?? \App\Models\PC\PcForm::KIND_PC_I); @endphp
@if(($form->pc_form_kind ?? \App\Models\PC\PcForm::KIND_PC_I) !== \App\Models\PC\PcForm::KIND_PC_I)
{{ $pciListKindLabel }}
@endif
|