Specialty module

{{ $definition['label'] }}

{{ $definition['description'] ?? '' }}

Manage modules

Departments

    @forelse ($departments as $department)
  • {{ $department->name }} {{ $department->branch?->name }}
  • @empty
  • No active departments for this module at your branch.
  • @endforelse

Queue stubs

    @forelse ($queueStubs as $stub)
  • {{ $stub['name'] ?? 'Queue' }} @if (! empty($stub['prefix'])) ({{ $stub['prefix'] }}) @endif {{ $stub['branch_name'] ?? '' }}
  • @empty
  • No queue stubs for your branch.
  • @endforelse
@include('care.partials.queue-ops', [ 'queueIntegration' => $queueIntegration ?? null, 'queueCallNextRoute' => 'care.specialty.call-next', 'queueCallNextParams' => ['module' => $moduleKey], 'branchId' => $branchId ?? null, ])

Waiting patients

Appointments
@forelse ($waiting as $appointment)

@if (! empty($queueIntegration['enabled']) && $appointment->queue_ticket_number) @include('care.partials.queue-ticket', [ 'ticketNumber' => $appointment->queue_ticket_number, 'ticketStatus' => $appointment->queue_ticket_status, ]) @endif {{ $appointment->patient?->fullName() }}

{{ $appointment->department?->name }} ยท {{ $appointment->practitioner?->name ?? 'Unassigned' }}

View
@empty

No patients waiting in this specialty.

@endforelse