@extends('layouts.app') @section('title', 'PCFMS Evidence Import') @section('contents')
Files stay on the attachments disk (path only). Review each UID, then Submit to fill empty PC fields and link files into the PC document repository. Status / workflow are never changed.
Attachments root path
@csrf
Current: {{ $attachmentsRoot }}
@if ($error)
{{ $error }}
@endif
Matched UIDs ({{ count($rows) }})
@forelse ($rows as $row) @empty @endforelse
UID ADP Number Scheme Name PC # Files
{{ $row['uid'] }} {{ $row['adp_number'] !== '' ? $row['adp_number'] : '—' }} {{ $row['scheme_name'] !== '' ? $row['scheme_name'] : '—' }} @if ($row['pc_form_id']) #{{ $row['pc_form_id'] }} @if ($row['pc_count'] > 1) ({{ $row['pc_count'] }}) @endif @else No PC @endif {{ $row['file_count'] }} @if ($row['pc_form_id']) Review / Import @else Need PC form first @endif
No matched UIDs. Check the attachments path and BMS project codes.
@endsection