@php
$linkedStudents = $studentParent->students()
->with([
'schoolClass',
'section',
])
->orderBy('first_name')
->limit(5)
->get();
@endphp
@if($linkedStudents->isNotEmpty())
@if($studentParent->students()->count() > 5)
@endif
@else
No students linked
Students can be linked to this parent from the student module.