Deploy Ladill Care / deploy (push) Successful in 35s
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>
14 lines
476 B
PHP
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
|