@if (isset($staff) && $staff->educations->isNotEmpty())
@foreach ($staff->educations as $education)
{{ $education->university ?? 'University Not Provided' }}
@if($education->degree) {{ $education->degree }} @endif @if($education->specialization) {{ $education->specialization }} @endif @if($education->date_of_completion) {{ $education->date_of_completion }} @endif
@if($education->notes)
Additional Notes
{{ $education->notes }}
@endif
@endforeach
@else
No Education Records Added
Education information will appear here once added.
@endif