@extends('layouts.app') @section('content')
Students - {{ $course->title }}
Select a student to start chat
Back

@if($students->isEmpty())
No students enrolled in this course.
@else
@foreach($students as $student) {{ $student->name }} Chat @endforeach
@endif
@endsection