@extends('backend.layouts.master') @section('title', 'Eligibility Check #'.$check->id) @section('content')

Eligibility Check #{{ $check->id }}

Back to list
@include('backend.partials.alerts')
Submitted answers
@forelse(($check->answer_labels ?? []) as $field => $label)
{{ str_replace('_', ' ', $field) }}
{{ $label }} ({{ $check->answers[$field] ?? '—' }})
@empty
No answers stored.
@endforelse
Score
{{ $check->score }} (minimum {{ $check->min_score }})
Result
{{ $check->resultBadge() }}
Submitted
{{ $check->created_at?->format('d M Y, H:i') }}
IP
{{ $check->ip_address ?: '—' }}
Status: @if($check->is_read) Read @else New @endif
@csrf
@csrf @method('DELETE')
@endsection