RixzZ
RixzZ
FFilament
Created by RixzZ on 1/4/2024 in #❓┊help
Refresh TableWidget data after Action
5 replies
FFilament
Created by adnn on 4/15/2024 in #❓┊help
Better performance?
Does the font load from the CDN if you already have it on your system? Inter is quite common recently, so maybe that's why only happened after changing it?
73 replies
FFilament
Created by Cench愛 on 1/28/2024 in #❓┊help
AttachAction problem with Relations?
Your method in the Panel model seems to be called 'group' not 'groups'
9 replies
FFilament
Created by RixzZ on 1/24/2024 in #❓┊help
Hide row action in Relation Manager shown in view page
Thanks either way @Blackpig 🙂
8 replies
FFilament
Created by RixzZ on 1/24/2024 in #❓┊help
Hide row action in Relation Manager shown in view page
8 replies
FFilament
Created by RixzZ on 1/24/2024 in #❓┊help
Hide row action in Relation Manager shown in view page
I already had tried with operation but doesn’t seem to be valid there
8 replies
FFilament
Created by RixzZ on 1/24/2024 in #❓┊help
Hide row action in Relation Manager shown in view page
Prebuilt actions seems to hide based on read only mode, but this doesn’t seem to apply to custom actions
8 replies
FFilament
Created by RixzZ on 1/5/2024 in #❓┊help
Hide table header row
Ended up adding a render hook as proposed and works perfectly. Thanks!
8 replies
FFilament
Created by RixzZ on 1/5/2024 in #❓┊help
Hide table header row
I’ll try that, thanks! There aren’t other tables in the same page so I guess I should be able to identify it.
8 replies
FFilament
Created by RixzZ on 1/5/2024 in #❓┊help
Hide table header row
Yeah, the table where I want to do this, isn't really much of a table. Nothing is interactive. I'm just using it there because I like the layout that it has when grouping rows, which is perfect for what I wanted. I don't think in my use case, hiding it with CSS would do any harm, but I didn't really see a way to inject CSS there either. I'll take a look to both your suggestions, although at first glace in the docs of ⁠ #kenneth-sese-advanced-tables , I don't see anything that would suggest that function. Thanks a lot!
8 replies
FFilament
Created by RixzZ on 1/4/2024 in #❓┊help
Refresh TableWidget data after Action
Okay, finally did it dispatching a livewire event and adding a map to $refresh in the $listeners.
5 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Multiple panels with own folder for resources duplicates path?
Okay... seems like you can't invert the position of the panel name in the namespace freely. By default it uses App/Filament/Admin/Resources/, and with that it works as expected.
4 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Two panels (User and Admin), with shared login page and session
yeah, that too, but I prefer to avoid adding the LoginResponse if I don't need it for anything else (for now...)
19 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Two panels (User and Admin), with shared login page and session
So any other panel than the main one, when going to their /X/login redirects to /login
19 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Two panels (User and Admin), with shared login page and session
Since I have a custom Login page that both panels use I added to the mount method:
if (request()->path() !== 'login') {
redirect()->route('filament.main.auth.login');
}
if (request()->path() !== 'login') {
redirect()->route('filament.main.auth.login');
}
19 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Two panels (User and Admin), with shared login page and session
I ended up solving the redirect thingy a bit diferently
19 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Two panels (User and Admin), with shared login page and session
Well, that in my case already happens, since I have a custom Login page that only has a button to redirect to the OIDC provider which sends the callback to /auth/callback anyway, so maybe I'm trying to complicate things too much 😅
19 replies
FFilament
Created by RixzZ on 8/30/2023 in #❓┊help
Two panels (User and Admin), with shared login page and session
Hey, thanks for the reply! Seems you are right. The session is already shared apparently, so when you login in /login or /admin/login (in my case) you already can access any panel you have permissions on. I could leave it like that or make a redirect to use /login on both I guess.
19 replies