@extends('layouts.app') @section('title', 'Imaging Report | ' . $imagingRequest->imaging_type) @section('styles') @endsection @section('content') @php $report = $imagingRequest->report; $isVerified = $report && $report->status === 'verified'; $patient = $imagingRequest->patient; @endphp
| Visit #: | {{ $imagingRequest->visit->visit_number ?? '' }} | Name: | {{ $patient->full_name ?? '' }} | Gender: | {{ ucfirst($patient->gender ?? '') }} | Age: | {{ $patient->age ?? '' }} | Patient ID: | {{ $patient->mrn ?? '' }} |
| Study Type: | {{ $imagingRequest->imaging_type }} | Body Part: | {{ $imagingRequest->body_part ?? '-' }} | Department: | Imaging | Date: | {{ $imagingRequest->created_at->format('d M Y H:i') }} |
Clinical Indication
{{ $report->clinical_indication ?? $imagingRequest->clinical_indication ?? '-' }}
Study Performed
{{ $report->study_performed ?? $imagingRequest->imaging_type }}
Findings
{{ $report->findings ?? '-' }}
Conclusion & Recommendation
{{ $report->impression ?? '-' }}
Additional Recommendations
{{ $report?->recommendation }}
Reported By:
{{ $report->reporter->name ?? '-' }}
Verified By:
{{ $report->approver->name ?? '-' }}
{{ $report->approved_at?->format('d M Y H:i') ?? '' }}
{{ $patient->full_name ?? '' }}
{{ $patient->mrn ?? '' }} · {{ ucfirst($patient->gender ?? '') }} · {{ $patient->age ?? '' }}