@extends('layouts.app') @section('title', 'Workflow Rescue — Search') @push('stylesheets') @endpush @section('contents')

Search imported PCFMS PCs

Dashboard

Enter any combination of filters. Results are limited to PCs linked via pcfms_import_maps.

Clear
@if ($searched)

Results {{ count($results) }}

Max 75 · click Diagnose to open Safe Recovery
@if (empty($results))
No imported PCFMS PCs matched your filters.
@else
@foreach ($results as $row) @endforeach
Form ID PC # UID ADP # Source ID State Stage Actor Created By Scheme Name Date and Time
#{{ $row['id'] }}
Imported
{{ $row['pc_number'] ?: '—' }} {{ $row['uid'] ?: '—' }} {{ $row['adp'] ?: '—' }} {{ $row['pcfms_source_id'] ?: '—' }} {{ $row['state'] ?: '—' }} @unless ($row['status']) inactive @endunless
{{ $row['workflow_stage_label'] ?? '—' }}
{{ $row['workflow_stage'] ?: '—' }}
{{ $row['actor'] }} @if (! empty($row['actor_id']))
#{{ $row['actor_id'] }}
@endif
{{ $row['created_by'] }} @if (! empty($row['created_by_id']))
#{{ $row['created_by_id'] }}
@endif
{{ $row['scheme'] ?: '—' }} {{ $row['datetime'] ?? '—' }} @if (can('workflow_rescue', 'diagnose')) Diagnose @endif
@endif
@else
Enter at least one filter above to list imported PCFMS PCs.
@endif
@endsection