@extends('layouts.app') @section('title', 'Clinical Report – ' . $student->name) @section('content') @php $profile = $student->studentProfile; @endphp
Back to report

Clinical Performance Report

{{ $student->name }} · {{ $semester->name }}

@if($report->exists) Download PDF @endif
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@endif
@csrf
{{-- Left: stats from logbook --}}
Procedure Progress (auto-calculated)
@foreach($yearSemesters as $sem) @php $p = $yearProgress[$sem->id] ?? []; @endphp @endforeach
Semester Passed Total
{{ $sem->name }}{{ $sem->id === $semester->id ? ' ★' : '' }} {{ ($p['compulsory_passed']??0)+($p['optional_passed']??0) }} {{ ($p['compulsory_total']??0)+($p['optional_total']??0) }}
{{-- Right: manual fields --}}
Manual Fields
Cancel
@endsection