@extends('layouts.admin') @section('page_kicker', 'Sessions') @section('page_title', 'Online sessions') @section('content')

Starting a session marks the visit active and points you to real-time chat. Voice and video can follow the same channel or deep links later.

@forelse($active as $appt)

{{ $appt->patient->name ?? 'Patient' }}

{{ optional($appt->scheduled_at)->format('M j, Y g:i A') }} ยท {{ $appt->channel ?? 'chat' }}

@csrf @method('PATCH')
@csrf @method('PATCH')
Open chat
@empty

No active or scheduled sessions.

@endforelse
@endsection