JustNoOne
JustNoOne
FFilament
Created by atabegruslan on 8/29/2024 in #❓┊help
1 Select input depends on another Select input's value. Select's options populated by DB table's col
should be something like this use Filament\Forms\Get; use App\Models\aaas; use App\Models\bbbs;
Forms\Components\Select::make('model') ->options([ 'Aaa' => 'Aaa', 'Bbb' => 'Bbb' ]), Forms\Components\Select::make('model_id') ->options([ function (Get $get){ switch ($get('model')){ case 'Aaa': return aaas::all()->pluck('name', 'id'); case 'Bbb': return bbbs::all()->pluck('name', 'id'); default: } } ]),
7 replies
FFilament
Created by JustNoOne on 8/2/2024 in #❓┊help
Filament shield resource not showing on admin panel
thanks, i solved it by enabling register_role_policy on the config
5 replies
FFilament
Created by Bryan on 7/29/2024 in #❓┊help
Filament Shield Have a Default Role
create a observer
11 replies
FFilament
Created by JustNoOne on 7/18/2024 in #❓┊help
email verification with UUID on user model
my fault, i have breezy session table i've changed it but nothing happens
8 replies
FFilament
Created by JustNoOne on 7/18/2024 in #❓┊help
email verification with UUID on user model
i think i don't have a sessions table on my db im using the built in email verification
8 replies
FFilament
Created by JustNoOne on 7/18/2024 in #❓┊help
email verification with UUID on user model
Up
8 replies
FFilament
Created by JustNoOne on 7/18/2024 in #❓┊help
email verification with UUID on user model
Up
8 replies
FFilament
Created by JustNoOne on 7/2/2024 in #❓┊help
The POST method is not supported for route user/login. Supported methods: GET, HEAD.
i've tried both of your suggestion but the error still persist
7 replies
FFilament
Created by JustNoOne on 4/23/2024 in #❓┊help
Image background on light mode
Thanks
5 replies
FFilament
Created by Dev_ on 1/30/2024 in #❓┊help
How can I achieve the automatic logout by the set time. Is it possible in Filament?
On idle?
7 replies