@extends('layouts.internal') @section('title', 'Assigned Evaluations ยท PLOCAL Internal') @section('content')

Professional evaluation queue

Assigned Evaluations

Only professional Evaluations within your authorized scope appear here.

@if($evaluations->isEmpty())

No active Evaluation work found

There are no assigned professional Evaluations in your current scope. Revoked assignments do not appear.

@else
@foreach($evaluations as $item)@endforeach
Authorized professional Evaluations
BusinessService / locationStatusAssignmentUpdatedProScoreAction
{{ $item->display_name }}{{ $item->service_name ?? 'Service not recorded' }}{{ $item->location_name ?? 'Service area not recorded' }}{{ str($item->lifecycle_status)->replace('_', ' ')->title() }}{{ $item->assignment_role ? ucfirst($item->assignment_role) : 'Administrator scope' }}{{ $item->final_proscore_hundredths === null ? 'Not available' : number_format($item->final_proscore_hundredths / 100, 2).' / 100' }}Open Evaluation
{{ $evaluations->links() }} @endif @endsection