Files
ladill-care/resources/views/care/partials/clinical-actions-panel.blade.php
T
isaaccladandCursor 2b3eed8f84
Deploy Ladill Care / deploy (push) Successful in 35s
Consolidate consultation and specialty actions into a sticky panel.
Desktop uses a right sticky Actions column; mobile uses a FAB above the nav that opens a bottomsheet. Request investigations moves into a modal/sheet, and Call next is available on the consultation panel.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-18 14:38:09 +00:00

14 lines
476 B
PHP

{{-- Desktop sticky Actions column. Pair with clinical-actions-mobile outside the grid. --}}
@php
$actionsView = $actionsView ?? null;
$title = $title ?? 'Actions';
@endphp
@if ($actionsView)
<aside class="hidden rounded-2xl border border-slate-200 bg-white p-4 lg:sticky lg:top-4 lg:block lg:self-start">
<h2 class="text-sm font-semibold text-slate-900">{{ $title }}</h2>
<div class="mt-3 space-y-2">
@include($actionsView)
</div>
</aside>
@endif