@extends('layouts.app') @section('title', __('ui.dashboards.nurse_title')) @section('content')

{{ __('ui.dashboards.nurse_title') }}

{{ __('ui.dashboards.system_overview') }}
Pending lab tests
View
@forelse ($pendingLabTests as $t) @empty @endforelse
# Patient Type Status
{{ $t->id }} {{ $t->patient->user->name ?? '-' }} {{ $t->type->name ?? '-' }} {{ $t->status }}
No pending lab tests.
Upcoming appointments
View
@forelse ($upcomingAppointments as $a) @empty @endforelse
# When Status
{{ $a->id }} {{ $a->scheduled_at }} {{ $a->status }}
No upcoming appointments.
@endsection