| @lang('student_info.group') |
|
@lang('student_info.section') |
|
|
@if($compulsory_subjects)
@foreach ($compulsory_subjects as $cs)
@endforeach
@endif
|
@if($group_subject)
@foreach ($group_subject as $gs)
@php
$group_subject = subject_reg_info::where('student_id',$data->student_id)->where('subject_id',$gs->id)->pluck('subject_id')->first();
@endphp
@endforeach
@endif
|
@if($optional_subject)
@foreach ($optional_subject as $os)
@php
$optional_subject = subject_reg_info::where('student_id',$data->student_id)->where('subject_id',$os->id)->pluck('subject_id')->first();
@endphp
@endforeach
@endif
|