@extends('backend.layouts.master') @section('title', 'Eligibility Checks') @section('content')

Eligibility Checks @if($unreadCount){{ $unreadCount }} new@endif

@php $homeMenuId = \App\Models\Menu::query()->where('route_name', 'home')->orWhere('slug', 'home')->value('id'); @endphp @if($homeMenuId) Edit checker settings @endif
@include('backend.partials.alerts')
Reset
@forelse($checks as $item) @empty @endforelse
# Answers Score Result Date Status Actions
{{ $item->id }} @foreach(($item->answer_labels ?? []) as $label) {{ $label }} @endforeach {{ $item->score }} / {{ $item->min_score }} @if($item->is_eligible) Eligible @else Needs Assessment @endif {{ $item->created_at?->format('d M Y H:i') }} @if($item->is_read) Read @else New @endif View
@csrf @method('DELETE')
No eligibility checks yet.
@if($checks->hasPages())
{{ $checks->links() }}
@endif
@endsection