{{-- Layout --}} @extends('teacher.layout.layout') {{-- Page Title --}} @section('title', 'GAS LMS | Assign Students to Group') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', [ 'items' => ['Compose Group' => route('teacher.course.composeGroup.index', $coffid)], ]) @endsection {{-- Content --}} @section('content')
image
{{ $course_offering->cname }} {{ $course_offering->lshort_name }}
{{ $course_offering->cdescription }}
{{ $course_offering->acyname }}
Session
{{ $course_offering->ttname }}
Teaching team
{{ $group->name }}
Compose Group Name
@if ($group->desc)
{{ $group->desc }}
{{--
{{ $course_offering->ttname }}
--}}
Compose Description
@endif
Students List

Available students

@csrf
@csrf
@foreach ($enrolledStudents as $student) @endforeach
Name Email Status
{{ $student->first_name . ' ' . $student->middle_name . ' ' . $student->last_name }} {{ $student->email }} {{ $student->attendance_count > 1 ? 'InActive' : 'active' }}
{{-- --}}

Group students

@csrf
@csrf
@foreach ($groupStudentsList as $student) @endforeach
Name Email Status
{{ $student->first_name . ' ' . $student->middle_name . ' ' . $student->last_name }} {{ $student->email }} {{ $student->attendance_count > 1 ? 'InActive' : 'active' }}
{{-- --}}
@endsection @section('js') {{-- --}} {{-- datatable --}} {{-- add and remove all students confirmation --}} {{-- checkbox selection to add students --}} {{-- checkbox selection to remove students --}} @endsection