@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