@extends('layout.layout') @section('content')
@if (session('success')) @endif
My Courses
@if ($courses->count())
@foreach ($courses as $index => $course) @endforeach
ID Student Name Time Action
{{ $index + 1 }} @foreach ($course->studentInvoices as $student) {{ $student->student->first_name }} {{ $student->student->last_name }}
@endforeach
@foreach ($course->scheduledSlots as $slot) {{ $slot->slot_start }} - {{ $slot->slot_end }}
@endforeach
start session Student Didn't Show-Up
@else

No courses found.

@endif
@endsection