@extends('layouts.teacher') @section('content')
Extra Meetings
@csrf {{--

Meeting Info

Course Offering Id : {{$meeting->coffid}} Free:{{$meeting->is_free}}, Topic: {{$meeting->mtopic}}, Type: {{$meeting->mtype}} , StartDate: {{$meeting->mstartdate}}, Start Time: {{$meeting->mstarttime}}, Duration: {{$meeting->mduration}},
--}}

Attendance List

Select Students Below to attend
@php $i = 0 @endphp @foreach ($student_list as $student ) @endforeach
ID Student Name Email Phone Status Payment
{{$student->id}} {{$student->first_name.' '.$student->middle_name.' '.$student->last_name}} {{$student->email}} {{$student->phone}} @if ($student->attendance_count >= 2) @else @endif
is_free) checked @endif >
is_free) checked @endif >
@php $i++; @endphp
@endsection