@extends('layouts.app') @section('content')
Chat with Students 1
Select a course to see enrolled students

{{-- ✅ Course dropdown --}}
@if(!$selectedCourseId)
Please select a course to view students.
@else
Course: {{ $selectedCourse?->title }}
Total Students: {{ $students->count() }}
count() > 0) id="bookings-table" @endif class="table table-bordered align-middle text-center"> @forelse($students as $idx => $stu) @empty @endforelse
# Student Name Action
{{ $idx + 1 }} {{ $stu->name }} {{-- ✅ Start chat with course_id --}} Start Chat
No students enrolled in this course.
@endif
@endsection @push('script') @endpush