minor - draft button

This commit is contained in:
Dr Masroor Ehsan 2025-01-20 23:22:56 +06:00
parent 2b26339dd9
commit 0893f3723e
4 changed files with 9 additions and 14 deletions

View File

@ -195,12 +195,6 @@ public function getColumns(): array
break; break;
case WorklistColumn::AssignedPhysician: case WorklistColumn::AssignedPhysician:
$columns[] = Column::make($col->value)
->orderable(false)
->searchable(false)
->title('Rad');
break;
case WorklistColumn::ReadingPhysician: case WorklistColumn::ReadingPhysician:
$columns[] = Column::make($col->value) $columns[] = Column::make($col->value)
->orderable(false) ->orderable(false)

BIN
resources/imgs/complete.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -54,12 +54,13 @@ class="ck-editor editor-container editor-container_classic-editor fixed-containe
<input name="report_status" class="form-check-input" type="radio" <input name="report_status" class="form-check-input" type="radio"
value="{{ \App\Domain\Report\ReportStatus::Preliminary->value }}" value="{{ \App\Domain\Report\ReportStatus::Preliminary->value }}"
id="radio_prelim" checked/> id="radio_prelim" checked/>
<span class="custom-option-header">
<span class="h6 mb-0">Draft</span>
</span>
<span class="custom-option-body"> <span class="custom-option-body">
<small>Preliminary report</small> <img src="{{ asset('imgs/work-in-progress.png') }}" alt="draft report" width="48">
<span class="ms-2 fw-bold">Draft</span>
<small class="text-muted fw-light">Preliminary report</small>
</span> </span>
</label> </label>
</div> </div>
</div> </div>
@ -69,11 +70,11 @@ class="ck-editor editor-container editor-container_classic-editor fixed-containe
<input name="report_status" class="form-check-input" type="radio" <input name="report_status" class="form-check-input" type="radio"
value="{{ \App\Domain\Report\ReportStatus::Finalized->value }}" value="{{ \App\Domain\Report\ReportStatus::Finalized->value }}"
id="radio_final"/> id="radio_final"/>
<span class="custom-option-header">
<span class="h6 mb-0">Finalize</span>
</span>
<span class="custom-option-body"> <span class="custom-option-body">
<small>Publish report</small> <img src="{{ asset('imgs/complete.png') }}" alt="final report" width="48">
<span class="ms-2 fw-bold">Finalize</span>
<small class="text-muted fw-light">Publish report</small>
</span> </span>
</label> </label>
</div> </div>