@extends('layouts.dash') @section('content') @include('inc.header')

My Assigned Students

Date: {{ \Carbon\Carbon::now()->format('l, F j, Y') }}

@if(session('success'))
{{ session('success') }}
@endif @php $today = \Carbon\Carbon::now()->toDateString(); @endphp @foreach($students as $student) @php $attendance = $attendances->where('student_id', $student->id) ->where('date', $today) ->first(); @endphp {{-- Mark Attendance --}} {{-- Lesson Learned (always editable) --}} @endforeach
Student Name Email Mark Attendance Lesson Learned
{{ $student->name }} {{ $student->email }} @if($attendance) Marked @else
@csrf
@endif
@csrf
@if($attendance && !$attendance->lesson_learned) No comments @endif
@endsection