{{-- Header --}}

{{ __('My Sessions') }}

{{ __('Manage your virtual classroom sessions') }}

{{-- Stats --}}

{{ $stats['total'] ?? 0 }}

{{ __('Total Sessions') }}

{{ $stats['completed'] ?? 0 }}

{{ __('Completed') }}

{{ $stats['upcoming'] ?? 0 }}

{{ __('Upcoming') }}

{{ $stats['avg_attendance'] ?? 0 }}%

{{ __('Avg Attendance') }}

{{-- Tabs --}}
{{-- Upcoming --}}
@forelse($upcomingSessions ?? [] as $session)

{{ $session['subject'] ?? '' }}

{{ $session['class'] ?? '' }} · {{ $session['enrolled'] ?? 0 }} {{ __('students') }}

{{ $session['date'] ?? '' }} {{ $session['time'] ?? '' }} · {{ $session['duration'] ?? 60 }}min
@empty

{{ __('No upcoming sessions scheduled') }}

@endforelse
{{-- Live --}}
@forelse($liveSessions ?? [] as $session)

{{ $session['subject'] ?? '' }}

{{ __('LIVE') }}

{{ $session['participants'] ?? 0 }}/{{ $session['enrolled'] ?? 0 }} {{ __('students joined') }}

{{ __('Rejoin Session') }}
@empty

{{ __('No live sessions') }}

@endforelse
{{-- Past --}}
@forelse($pastSessions ?? [] as $session)

{{ $session['subject'] ?? '' }}

{{ $session['date'] ?? '' }} · {{ $session['duration'] ?? 0 }}min

{{ __('Attendance:') }} {{ $session['attendance_rate'] ?? 0 }}% ({{ $session['attended'] ?? 0 }}/{{ $session['enrolled'] ?? 0 }})
@if($session['has_recording'] ?? false) {{ __('Replay') }} @endif {{ __('Attendance') }}
@empty

{{ __('No past sessions yet') }}

@endforelse