This commit is contained in:
Dr Masroor Ehsan 2025-01-14 13:50:52 +06:00
parent 21517ebd41
commit 13067b9697
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@
@include('staff.meta.partials._check', ['name' => 'priority', 'id' => 'pri_3', 'label' => 'Stat', 'value' => \App\Domain\Study\Priority::Stat->value, 'checked' => $study->priority->value == \App\Domain\Study\Priority::Stat->value])
</div>
<label class="form-check m-0">
<label class="form-check form-check-danger mt-4">
<input name="cancel_read" type="checkbox" class="form-check-input"/>
<span class="form-check-label">Cancel interpretation by radiologist</span>
</label>

View File

@ -1,4 +1,4 @@
<div class="form-check form-check-inline">
<div class="form-check mb-2">
<input name="{{ $name }}" class="form-check-input" type="radio" value="{{ $value }}" id="{{ $name }}" @if ($checked) checked @endif />
<label class="form-check-label" for="{{ $name }}">{{ $label }}</label>
</div>