29 lines
797 B
PHP
29 lines
797 B
PHP
<x-app-layout>
|
|
<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
{{ __('Metadata 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>patient_name</h5>
|
|
<div class="p-4 border-gray-100">
|
|
{{ $study->patient_name }}
|
|
</div>
|
|
<x-section-border/>
|
|
|
|
@if (may(\App\Domain\ACL\Permission::StudyMetadataEdit))
|
|
<a class="btn btn-sm" href="{{ route('staff.meta.edit', $study->hash) }}">Edit</a>
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</x-app-layout>
|