@if(! $isCompleted)
@elseif($nextLesson)
@if($nextLesson->is_locked)
Kembali ke Dashboard
@else
@php
$nextUrl = match($nextLesson->type){
'lesson' => route('siswa.modul.show', $nextLesson->id),
'quiz' => route('siswa.quiz.intro', $nextLesson->id),
'task' => route('siswa.task.show', $nextLesson->id),
default => route('siswa.dashboard')
};
@endphp
Lanjut ke Materi
@endif
@else
Kembali ke Dashboard
@endif