Created
September 20, 2023 04:30
-
-
Save webnitros/69d9fd36c9f9dfd3473c34451eec011f to your computer and use it in GitHub Desktop.
filament
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TextInput::make('name') | |
->disabled() // Поле отключен | |
->dehydrated() // запрет на редактирование но при этом сохранять данные в базу | |
->dehydrateStateUsing(fn(string $state): string => mb_strtolower($state)) | |
->required(), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment