Hro
Hro
Explore posts from servers
FFilament
Created by Hro on 2/2/2024 in #❓┊help
How to refresh sub navigation badge using a livewire event?
The navigation badge shows a count of how many items there are, however, when adding an item I cannot refresh this badge.
4 replies
FFilament
Created by Hro on 1/8/2024 in #❓┊help
history.replaceState error in safari when having many components with actions
So, when I have a lot of components that use actions, I get history.replaceState in safari (or its equivalent in chrome) SecurityError: Attempt to use history.replaceState() more than 100 times per 10 seconds I have looked around and could not really find a similar issue.
4 replies
FFilament
Created by Hro on 10/31/2023 in #❓┊help
Fill defaults on create with $attributes from model
Hi, Wondering if I am overlooking something. I would love to always fill the defaults in the form based on the default attributes in the model. Currently I am adding this to the mount in the create pages:
$this->form->fill($this->getModel()::make()->attributesToArray());
$this->form->fill($this->getModel()::make()->attributesToArray());
But I kinda feel this should be done already somehow?
3 replies
FFilament
Created by Hro on 8/13/2023 in #❓┊help
Arguments are lost on reactive forms
1 replies
FFilament
Created by Hro on 8/4/2023 in #❓┊help
Optional tenancy registration
Is it possible to have tenancy optional? So it is not required to belong to a tenant.
4 replies
FFilament
Created by Hro on 4/25/2023 in #❓┊help
Getting the attached and parent record in a relation manager hook
I know there is a way, I just cannot seem to directly figure out which one.
Tables\Actions\AttachAction::make()->after(function () {
dd('attached');
}),
Tables\Actions\CreateAction::make()->after(function () {
dd('Created');
}),
Tables\Actions\AttachAction::make()->after(function () {
dd('attached');
}),
Tables\Actions\CreateAction::make()->after(function () {
dd('Created');
}),
In the hooks above, how can I get the attached record and the record it was attached to?
11 replies
FFilament
Created by Hro on 4/18/2023 in #❓┊help
Repeaters without grey topbar
3 replies