@if ($students->isEmpty() || $courses->isEmpty())
@if ($students->isEmpty() && $courses->isEmpty())
No students and courses found. Please create students and courses first.
@elseif ($students->isEmpty())
No students found. Please create students first.
@else
No courses found. Please create courses first.
@endif
@endif