SEMICOLON;
SEMICOLON;
Explore posts from servers
FFilament
Created by SEMICOLON; on 8/7/2023 in #❓┊help
Fill form data when a specific field changes
Thank you so much guys 👍
11 replies
FFilament
Created by SEMICOLON; on 8/7/2023 in #❓┊help
Fill form data when a specific field changes
TextInput::make('hourly_price')->afterStateUpdated(function (Closure $set, $state) {
dd($state);
})
TextInput::make('hourly_price')->afterStateUpdated(function (Closure $set, $state) {
dd($state);
})
state returns only the input of hourly_price
11 replies
FFilament
Created by SEMICOLON; on 8/7/2023 in #❓┊help
Fill form data when a specific field changes
Can I access the value daily_price inside TextInput::make('hourly_price')->afterStateUpdated(...) ? is seems that state returns only the value hourly_price
11 replies