Forms\Components\TextInput::make('name')
->live()
->required()
->string()
->maxLength(250)
->afterStateUpdated(function ($state, Forms\Set $set) {
$slug = Str::slug($state);
$set('slug', '/' . $slug);
}),
Forms\Components\TextInput::make('slug')
->required(),
Forms\Components\TextInput::make('name')
->live()
->required()
->string()
->maxLength(250)
->afterStateUpdated(function ($state, Forms\Set $set) {
$slug = Str::slug($state);
$set('slug', '/' . $slug);
}),
Forms\Components\TextInput::make('slug')
->required(),