Husky110
Husky110
FFilament
Created by Bruno on 9/20/2024 in #❓┊help
Modal: Livewire component
with ->action you actually tell Filament what to do when you click "Save" on your modal. what you want is Action::make('meep')->form()
6 replies
FFilament
Created by Husky110 on 6/3/2024 in #❓┊help
Table-Widget-Problem (call to a member function table() on string)
🤦‍♂️ - of course! Own stupidity! 😅 Thank you!
6 replies
FFilament
Created by Husky110 on 5/28/2024 in #❓┊help
Section Heading-Background-Color
Ah okay - Thank you! 🙂
11 replies
FFilament
Created by Husky110 on 5/28/2024 in #❓┊help
Section Heading-Background-Color
Thank you! Did you use the custom-theme for the heading there or something else?
11 replies
FFilament
Created by Husky110 on 1/18/2024 in #❓┊help
Navigation in groups with translated labels
@Patrick Boivin - Hey Pat, can you help me on this one please?
5 replies
FFilament
Created by Husky110 on 1/18/2024 in #❓┊help
Navigation in groups with translated labels
push? 🙂
5 replies
FFilament
Created by Husky110 on 1/18/2024 in #❓┊help
Navigation in groups with translated labels
Okay - I was able to figure out that my error came from a mixup. The correct code for the WarehouseManagementResource should have been this:
public static function getNavigationParentItem(): ?string
{
return m__('general.terms.tools');
}

public static function getNavigationGroup(): ?string
{
return m__('navigation.articlemanagement');
}
public static function getNavigationParentItem(): ?string
{
return m__('general.terms.tools');
}

public static function getNavigationGroup(): ?string
{
return m__('navigation.articlemanagement');
}
Problem is - the Sub-Group does not show up on the navigation... I tried returning a static string return 'Tools'; but nothing shows up...
5 replies
FFilament
Created by Husky110 on 12/7/2023 in #❓┊help
Change Brand/Logo URL in V3
Ha! That's it! Thank you! 🙂
8 replies
FFilament
Created by Husky110 on 12/7/2023 in #❓┊help
Change Brand/Logo URL in V3
Hey - Yeah, well I know how to change the logo itself, but the URL /login seems to stay the same. I wanna change that to something else. 🙂
8 replies
FFilament
Created by Matthew on 11/26/2023 in #❓┊help
How can I remove the "All pages" row in the Summarizers?
Oh... Didn't see that... Sorry, no idea, since I never used them... 😅
23 replies
FFilament
Created by Matthew on 11/26/2023 in #❓┊help
How can I remove the "All pages" row in the Summarizers?
do you always wanna show all records or just remove the all entries? showing all works by ->paginated(false)on the table. removing only the "all"-entry works by ->paginationPageOptions([1,2,3]) on the table.
23 replies
FFilament
Created by Husky110 on 11/24/2023 in #❓┊help
Rebuild Infolist
Okay - turns out my approach was ape-💩. I've created a "manage"-action and using this everything works as expected.
4 replies
FFilament
Created by Husky110 on 11/24/2023 in #❓┊help
Infolist - send data to Action
No description
8 replies
FFilament
Created by Husky110 on 11/24/2023 in #❓┊help
Infolist - send data to Action
No description
8 replies
FFilament
Created by Husky110 on 11/24/2023 in #❓┊help
Infolist - send data to Action
Worked! Thanks Dennis. 🙂
8 replies
FFilament
Created by Husky110 on 11/21/2023 in #❓┊help
Wizard with depending steps in an action
Okay, found it out myself. I can lock the user in step 1 by using custom rules. see https://filamentphp.com/docs/3.x/forms/validation#custom-rules afterwards the advanced forms (dependend select-options and such) helped. see https://filamentphp.com/docs/3.x/forms/advanced
4 replies
FFilament
Created by Husky110 on 9/1/2023 in #❓┊help
Modify Builder Delete-Action
thank you anyhow 🙂
17 replies
FFilament
Created by Husky110 on 9/1/2023 in #❓┊help
Modify Builder Delete-Action
no worries - I'll evaluate output of "sync" between section and question and there I see what's missing. 🙂
17 replies
FFilament
Created by Husky110 on 9/1/2023 in #❓┊help
Modify Builder Delete-Action
I was hoping for a "direct" aproach on the delete-action itself. In the end I could compare on the handleRecordUpdate what the array gave me and what is stored inside the db.
17 replies