@if ($id_card->student_name == 1)
{{ $staff_student->full_name != '' ? $staff_student->full_name : '' }}
@endif
@if ($id_card->admission_no == 1)
@if ($role_id == 2)
@lang('student.admission_no') : {{ $staff_student->admission_no }}
@else
@lang('hr.staff_id') : {{ $staff_student->staff_no }}
@endif
@endif
@if ($id_card->class == 1 && $role_id == 2 && !moduleStatusCheck('Univeristy'))
@lang('common.class') :
@foreach ($staff_student->getClassRecord as $record)
{{ $record->class->class_name }}
({{ $record->section->section_name }})
,
@endforeach
@endif
@if ($role_id == 2)
@if (moduleStatusCheck('University'))
@if ($id_card->un_session == 1)
@lang('university::un.session') : @foreach ($staff_student->studentRecords as $record)
{{ $record->unSession->name }} ,
@endforeach
@endif
@if ($id_card->un_faculty == 1)
@lang('university::un.faculty') : @foreach ($staff_student->studentRecords as $record)
{{ $record->unFaculty->name }} ,
@endforeach
@endif
@if ($id_card->un_department == 1)
@lang('university::un.department') : @foreach ($staff_student->studentRecords as $record)
{{ $record->unDepartment->name }} ,
@endforeach
@endif
@if ($id_card->un_academic == 1)
@lang('university::un.academic') : @foreach ($staff_student->studentRecords as $record)
{{ $record->unAcademic->name }} ,
@endforeach
@endif
@if ($id_card->un_semester == 1)
@lang('university::un.semester') : @foreach ($staff_student->studentRecords as $record)
{{ $record->unSemester->name }} ,
@endforeach
@endif
@endif
@endif