@php $user = Auth::user(); $layout = match($user?->role) { 'head_nurse' => 'layouts.head-nurse', 'clinic_admin' => 'layouts.clinic-admin', 'nurse' => 'layouts.nurse', default => 'layouts.app', }; @endphp @extends($layout) @section('title', $title ?? 'Coming Soon') @section('content')

{{ $title ?? 'Feature Coming Soon' }}

{{ $message ?? 'This feature is currently under development and will be available soon.' }}

Under Development
Back to Dashboard

Need this feature urgently? Contact the system administrator.

@if($user?->role === 'clinic_admin')

Planned Features

  • Nurse Management

    Create and manage nurses for your clinic

  • Zone Management

    Configure geographical zones for your clinic

  • Appointments

    View and manage clinic appointments

  • Clinic Change Requests

    Review and approve transfer requests

@endif
@endsection