FIX #16 - hide nav tabs from radiologists

This commit is contained in:
Dr Masroor Ehsan 2025-01-22 00:09:56 +06:00
parent 1c291ceb54
commit f767abe9f1

View File

@ -3,8 +3,10 @@
@include('staff.worklist.partials._nav-item', ['id' => 'nav__unread', 'text' => 'Pending', 'active' => 'active', 'icon' => 'hourglass-2-line', 'tip' => 'Unread studies'])
@include('staff.worklist.partials._nav-item', ['id' => 'nav__read', 'text' => 'Complete', 'active' => '', 'icon' => 'flag-2-line', 'tip' => 'Finalized reports'])
@include('staff.worklist.partials._nav-item', ['id' => 'nav__progress', 'text' => 'In Progress', 'active' => '', 'icon' => 'heart-pulse-line', 'tip' => 'Read in progress'])
@include('staff.worklist.partials._nav-item', ['id' => 'nav__orphan', 'text' => 'Unassigned', 'active' => '', 'icon' => 'price-tag-3-line', 'tip' => 'Unassigned studies'])
@include('staff.worklist.partials._nav-item', ['id' => 'nav__assigned', 'text' => 'Assigned', 'active' => '', 'icon' => 'team-line', 'tip' => 'Studies assigned to radiologists'])
@if (may(\App\Domain\ACL\Permission::AssignRadiologist))
@include('staff.worklist.partials._nav-item', ['id' => 'nav__orphan', 'text' => 'Unassigned', 'active' => '', 'icon' => 'price-tag-3-line', 'tip' => 'Unassigned studies'])
@include('staff.worklist.partials._nav-item', ['id' => 'nav__assigned', 'text' => 'Assigned', 'active' => '', 'icon' => 'team-line', 'tip' => 'Studies assigned to radiologists'])
@endif
@include('staff.worklist.partials._nav-item', ['id' => 'nav__all', 'text' => 'All', 'active' => '', 'icon' => 'stack-line', 'tip' => 'All studies'])
</ul>
</div>