@if (isset($custom_field_values))

@lang('student.custom_field')

@foreach ($custom_field_values as $key=>$custom_field_info)
{{$key}}
@if(is_array($custom_field_info)) {{implode(', ', $custom_field_info)}} @else @php $file = pathinfo($custom_field_info, PATHINFO_EXTENSION); @endphp @if($file && file_exists($custom_field_info))
@php $name = explode('/', $custom_field_info); $number = array_key_last($name); echo explode('.',$name[$number])[0]; @endphp
@else {{$custom_field_info}} @endif @endif
@endforeach @endif