diff --git a/resources/views/pages/en/fields/select.blade.php b/resources/views/pages/en/fields/select.blade.php index b8c31faf..5c260cb1 100644 --- a/resources/views/pages/en/fields/select.blade.php +++ b/resources/views/pages/en/fields/select.blade.php @@ -13,6 +13,7 @@ ['url' => '#update-on-preview', 'label' => 'Editing in preview'], ['url' => '#with-image', 'label' => 'Values with picture'], ['url' => '#options', 'label' => 'Options'], + ['url' => '#native', 'label' => 'Native mode'], ] ]" > @@ -306,4 +307,14 @@ public function fields(): array @include('pages.en.fields.shared.choices_options', ['field' => 'Select']) +Native mode + + + The native() method disables the Choices.js library and displays select in native mode + + + + Select::make('Type')->native() + + diff --git a/resources/views/pages/ru/fields/select.blade.php b/resources/views/pages/ru/fields/select.blade.php index f73ab277..05b4a379 100644 --- a/resources/views/pages/ru/fields/select.blade.php +++ b/resources/views/pages/ru/fields/select.blade.php @@ -13,6 +13,7 @@ ['url' => '#update-on-preview', 'label' => 'Редактирование в preview'], ['url' => '#with-image', 'label' => 'Значения с изображением'], ['url' => '#options', 'label' => 'Опции'], + ['url' => '#native', 'label' => 'Нативный режим'], ] ]" > @@ -306,4 +307,13 @@ public function fields(): array @include('pages.ru.fields.shared.choices_options', ['field' => 'Select']) +Нативный режим + + + Метод native() отключает библиотеку Choices.js и выводит select в нативном режиме + + + + Select::make('Type')->native() +