otm
otm
FFilament
Created by Dwayne on 3/28/2024 in #❓┊help
How to set width of registration page
Wizard::make([ Wizard\Step::make('Personal') ->schema([ // ... ]), Wizard\Step::make('Company') ->schema([ // ... ]), Wizard\Step::make('Account') ->schema([ // ... ]), ]) ->columnSpan('full')
6 replies
FFilament
Created by ganucoding on 11/28/2023 in #❓┊help
Why Select multiple & TagsInput afterStateUpdated() not triggering
sometimes it is good to clear the cache php artisan cache:clear
9 replies
FFilament
Created by ganucoding on 11/28/2023 in #❓┊help
Why Select multiple & TagsInput afterStateUpdated() not triggering
the Solution @Leandro Ferreira suggested did the trick. the the code is Select::make('users') ->label('Users:') ->multiple() ->options([ 'test1' => 'Test One', 'test2' => 'Test Two', 'test3' => 'Test Three' ]) ->searchable() ->live() ->afterStateUpdated(function (Model $record, $state) { $record->update(['users' => $state]); }),
9 replies
FFilament
Created by ganucoding on 11/28/2023 in #❓┊help
Why Select multiple & TagsInput afterStateUpdated() not triggering
I have similar issue ,i have used live()
9 replies