@php
$studentTypes = explode(',', $student->student_type ?? '');
$studentScholarshipPrograms = explode(
',',
$student->student_scholarship_program ?? '',
);
$typeNames = $type
->whereIn('type_id', $studentTypes)
->pluck('type_name_en')
->implode(', ');
@endphp
* These fields are required.