Saade
Saade
FFilament
Created by stursby on 5/2/2024 in #❓┊help
disable the user avatar/menu during onboarding?
i've recently made a PR to the profile page too https://github.com/filamentphp/filament/pull/12515
60 replies
FFilament
Created by stursby on 5/2/2024 in #❓┊help
disable the user avatar/menu during onboarding?
no worries, its a requirement on my end too to not show the user menu there
60 replies
FFilament
Created by stursby on 5/2/2024 in #❓┊help
disable the user avatar/menu during onboarding?
did you added ->emailVerification(EmailVerificationPrompt::class) to the panel?
60 replies
FFilament
Created by stursby on 5/2/2024 in #❓┊help
disable the user avatar/menu during onboarding?
If you extend the EmailVerificationPrompt page, you can just add protected bool $hasTopbar = false; to get rid off the topbar
60 replies
FFilament
Created by NoxyArg on 4/7/2024 in #❓┊help
Action form how send data ?
Thats how Laravel's pluck works 🤷‍♂️
11 replies
FFilament
Created by Amitoj on 4/10/2024 in #❓┊help
Distorted Menu Button & Modals
you need to copy the css and js folders too
26 replies
FFilament
Created by NoxyArg on 4/7/2024 in #❓┊help
Action form how send data ?
pluck('article_id', 'article_id')
11 replies
FFilament
Created by Abi on 3/7/2024 in #❓┊help
dispatch livewire event after action execution
You need to broadcasting for that
7 replies
FFilament
Created by Abi on 3/7/2024 in #❓┊help
dispatch livewire event after action execution
->after()
7 replies
FFilament
Created by Carlos Lopes on 2/28/2024 in #❓┊help
Set first and last day of month in DatePicker
Remove the ->default() from the field, and add ->format()
6 replies
FFilament
Created by Carlos Lopes on 2/28/2024 in #❓┊help
Set first and last day of month in DatePicker
$this->form->fill([
'dataInicio' => ...,
'dataFim' => ...
]);
$this->form->fill([
'dataInicio' => ...,
'dataFim' => ...
]);
6 replies
FFilament
Created by Wirkhof on 2/27/2024 in #❓┊help
How to convert string ["4"] to real array?
you wrote "get values stored as varchar" which led me to think you're talking about a database column/ model attribute
7 replies
FFilament
Created by Wirkhof on 2/27/2024 in #❓┊help
How to convert string ["4"] to real array?
json_decode() ?
7 replies
FFilament
Created by Wirkhof on 2/27/2024 in #❓┊help
How to convert string ["4"] to real array?
7 replies
FFilament
Created by Eren on 2/26/2024 in #❓┊help
Add watermark curator images.
5 replies
FFilament
Created by Pan on 2/9/2024 in #❓┊help
Upgrade from 3.0 to 3.2 led to SpatieMedia::hasRelationship does not exist in my livewire
Please constrain all filament packages to ^3.2 and run composer update to update the packages to the correct version
16 replies
FFilament
Created by Pan on 2/9/2024 in #❓┊help
Upgrade from 3.0 to 3.2 led to SpatieMedia::hasRelationship does not exist in my livewire
Your filament/filament version is 3.1.8 while the subpackages (filament/spatie-laravel-media-library-plugin) are on v3.2.37
16 replies
FFilament
Created by Pan on 2/9/2024 in #❓┊help
Upgrade from 3.0 to 3.2 led to SpatieMedia::hasRelationship does not exist in my livewire
Actually, please send your composer.lock and .json here please
16 replies
FFilament
Created by Pan on 2/9/2024 in #❓┊help
Upgrade from 3.0 to 3.2 led to SpatieMedia::hasRelationship does not exist in my livewire
Looks like a bug. Please open an issue on the filamentphp/filament repo.
16 replies
FFilament
Created by Clement on 2/26/2024 in #❓┊help
Can't receive relationship data on a form createAction
1st. Read #✅┊rules to know how to format your code properly. 2nd. Please don't tag people. 3rd. If you're using ->relationship() the relation will be saved automatically for you, hence why there's no metiers in the $data array
4 replies