@extends('layouts.app') @section('title', 'Demande – ' . $residentCase->medicalCase->case_number) @section('page-title', 'Demande – ' . $residentCase->medicalCase->case_number) @section('content') @php $mc = $residentCase->medicalCase; @endphp
{{-- Case Info --}}
{{ $mc->case_number }} {{ $mc->category }} {{ $mc->type }}
Histoire / Information Clinique
{{ $mc->clinical_history }}
@if($mc->images->count())
Photos
@foreach($mc->images as $img)
@if($img->origin) {{ $img->origin }} @endif
@endforeach
@endif @if($mc->links->count())
Liens
    @foreach($mc->links as $link)
  • {{ $link->url }} @if($link->origin){{ $link->origin }}@endif
  • @endforeach
@endif
{{-- Findings Form (Resident) --}} @if(Auth::user()->isResident() || Auth::user()->canViewAllResidents())
Trouvailles
@csrf
@if(Auth::user()->isResident()) @endif
@endif
Informations
Résident
{{ $resident->full_name }}
Assigné par
{{ $residentCase->assignedBy->full_name ?? '–' }}
Date limite
{{ $residentCase->deadline->format('d/m/Y') }}
Statut
Demande
Retour @endsection