@extends('teacher.layouts.layouts') @section('content')

Chat Group Details

Chat Group Name: {{ $group->name }}


Curriculum Name: {{ $group->curriculum?->name }}

@if ($group->students?->isNotEmpty())
@foreach ($group->students as $student)
Name: {{ $student->name }}

Email: {{ $student->email }}

@endforeach
@else

No Student found.

@endif
Back to List
@endsection