dhanar98
dhanar98
FFilament
Created by dhanar98 on 2/21/2024 in #❓┊help
How to Show the Relationship based table field based on dropdown selection
Hi i want to show the form components based on the select option selection and this will created a data based on the type
2 replies
FFilament
Created by dhanar98 on 2/19/2024 in #❓┊help
Based on select option set regex in text input field
Forms\Components\TextInput::make('code')
->required()
->maxLength(255), // need to add the regex for this
Forms\Components\Select::make('type')
->searchable()
->required()
->options(self::getBarcodeTypes()),
Forms\Components\TextInput::make('code')
->required()
->maxLength(255), // need to add the regex for this
Forms\Components\Select::make('type')
->searchable()
->required()
->options(self::getBarcodeTypes()),
4 replies