@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')
Dashboard
@if (count($appointments) > 0) @foreach ($appointments as $appointment)
{{ucfirst($appointment->user->name)}}
Appointment date: {{$appointment->appointment_date}}
Appointment time: {{$appointment->appointment_time}}
@endforeach @else
No chats at this moment
@endif
User Name
Active
Click on the user chat to begin messaging.
@include('partials.footer')
@include('global.footer-links')