@php $options = []; foreach(App\Models\School\Teacher\Teacher::POSITION_ALL as $position){ $options[] = [ 'value' => $position, ]; } @endphp @include('.frontend.template.base_dropdown_menu',[ 'label' => '校內職務*', 'is_exclamation' => !empty($is_exclamation), 'name' => 'position', 'id' => $id ?? 'position', 'class' => $class ?? '', 'options' => $options, 'option_name_field' => 'value', 'option_value_field' => 'value', 'lang' => 'teacher/position', 'default' => $default ?? null, 'first_option' => $default ?? null, ])