@extends('layouts.app') @section('title', 'Compliance – ' . $mr->name) @section('content')
← Compliance overview

{{ $mr->name }}

Period: {{ $from }} – {{ $to }}

@php $d = $detail; @endphp
Compliance score
{{ $d['score'] }}
Band
@if ($d['band'] === 'high') high @elseif ($d['band'] === 'medium') medium @else low @endif
Total visits
{{ $d['total_visits'] }}

Breakdown

@if (!empty($d['reasons']))

Deviation reasons & evidence

@foreach ($d['reasons'] as $r)
{{ $r['label'] }} @if (!empty($r['count'])) ({{ $r['count'] }}) @endif @if (!empty($r['evidence'])) @endif
@endforeach
@endif @endsection