43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<x-app-layout>
|
|
<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
{{ __('History View') }}
|
|
</h2>
|
|
</x-slot>
|
|
|
|
<div>
|
|
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
|
|
|
<div class="mt-10 sm:mt-0">
|
|
<h4>Clinical Information</h4>
|
|
|
|
<h5>Clinical History</h5>
|
|
<div class="p-4 border-gray-100">
|
|
{{ $details->clinical_history }}
|
|
</div>
|
|
<x-section-border/>
|
|
|
|
<h5>surgical_history</h5>
|
|
<div class="p-4 border-gray-100">
|
|
{{ $details->surgical_history }}
|
|
</div>
|
|
<x-section-border/>
|
|
|
|
<h5>lab_results</h5>
|
|
<div class="p-4 border-gray-100">
|
|
{{ $details->lab_results }}
|
|
</div>
|
|
<x-section-border/>
|
|
|
|
<h5>clinical_diagnosis</h5>
|
|
<div class="p-4 border-gray-100">
|
|
{{ $details->clinical_diagnosis }}
|
|
</div>
|
|
<x-section-border/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</x-app-layout>
|