@lang('common.sl') | @lang('student.label') | @lang('common.type') | @lang('student.width') | @lang('student.required') | @lang('student.value') | @if (moduleStatusCheck('ParentRegistration') == true) {{-- added for online student registration custom field showing --abunayem --}}@lang('student.available_for_online_registration') | @endif@lang('common.actions') |
---|---|---|---|---|---|---|---|
{{ $key + 1 }} | {{ $custom_field->label }} | @if ($custom_field->type == 'textInput') @lang('student.text_input') @elseif ($custom_field->type == 'numericInput') @lang('student.numeric_input') @elseif ($custom_field->type == 'multilineInput') @lang('student.multiline_input') @elseif ($custom_field->type == 'datepickerInput') @lang('student.datepicker_input') @elseif ($custom_field->type == 'checkboxInput') @lang('student.checkbox_input') @elseif ($custom_field->type == 'radioInput') @lang('student.radio_input') @elseif ($custom_field->type == 'dropdownInput') @lang('student.dropdown_input') @else @lang('student.file_input') @endif @if ($custom_field->type == 'textInput' || $custom_field->type == 'multilineInput') @lang('student.min_length') : {{ $v_lengths[0] }} @lang('student.max_length') : {{ $v_lengths[1] }} @endif @if ($custom_field->type == 'numericInput') @lang('student.min_value') : {{ $v_values[0] }} @lang('student.max_value') : {{ $v_values[1] }} @endif | @if ($custom_field->width == 'col-12') @lang('student.full_width') @elseif ($custom_field->width == 'col-6') @lang('student.half_width') @elseif ($custom_field->width == 'col-4') @lang('student.one_fourth_width') @elseif($custom_field->width == 'col-3') @lang('student.one_thired_width') @endif | @if ($custom_field->required == 1) @lang('student.required') @else @lang('student.not_required') @endif | @if ( $custom_field->type == 'checkboxInput' || $custom_field->type == 'radioInput' || $custom_field->type == 'dropdownInput') @if ($v_name_values) @foreach ($v_name_values as $v_name_value) {{ @$v_name_value }}@if (!$loop->last), @endif @endforeach @endif @endif | @if (moduleStatusCheck('ParentRegistration') == true) {{-- added for online student registration custom field showing --abunayem --}}@if ($custom_field->is_showing == 1) @lang('common.yes') @else @lang('common.no') @endif | @endif
|