Home
Courses
(current)
@auth('student')
Topics
@else
Login
@if (Route::has('register'))
Register
@endif @endauth
@auth('student')
{{ Auth::guard('student')->user()->name }}
My Courses
Profile
Logout
@csrf
@endauth
{{ $course->name }} - Topics
@forelse($course->courseTopics as $courseTopic)
{{ $courseTopic->topic->title }}
@csrf
Create Exam for Topic
Select Chapter
@forelse($courseTopic->topicsChapters as $topicsChapter)
{{ $topicsChapter->chapter->name }}
@csrf
Create Exam for Chapter
@empty
No chapters available for this topic.
@endforelse
@empty
No topics available.
@endforelse