radfusion/resources/views/staff/studies/show-details.blade.php
2025-01-07 03:21:09 +06:00

33 lines
1.0 KiB
PHP

@php
$chunks = array_chunk($data, 2, true);
@endphp
<div class="fs-6 text-nowrap table-responsive">
<table class="table table-sm table-bordered mb-4">
<tbody>
@foreach ($chunks as $chunk)
<tr>
@foreach ($chunk as $key => $value)
<td class="table-active fw-bold">{{ $key }}</td>
<td class="fw-medium">{{ $value }}</td>
@endforeach
</tr>
@endforeach
</tbody>
</table>
@include('staff.history.partials._history', ['details' => $study->details])
@if ( $study->hasMedia(\App\Models\Study::MEDIA_COLLECTION) )
<div class="card shadow-none bg-transparent border">
<div class="card-header">
Attachments
</div>
<div class="card-body">
@include('staff.history.partials._uploaded-studies-list', ['study' => $study, 'allow_delete' => false, 'table_header' => false])
</div>
</div>
@endif
</div>