Ferks
Ferks
FFilament
Created by Ferks on 5/18/2025 in #❓┊help
Table with infolist
I'm trying to render a section of an infolist and it's just a table, but there doesn't seem to be a table component of the infolist components. Is there a way to do this?
11 replies
FFilament
Created by Ferks on 5/6/2025 in #❓┊help
Questions regarding the use of 2 filament panels and redirections.
Hi, I'm starting to test with Filament, and I'm trying to make 2 panels (admin and app), it turns out that the admin, is the default of filament, it's working fine. But I have some doubts about the app. The first one is about redirection, when accessing http://panel/app everything works fine, but when removing /app I have a not found problem, doesn't filament give me something to automatically redirect to /app? At the moment I've solved this by just adding this to my web.php.
Route::redirect('/', 'app')->name('home.index');
Route::redirect('/', 'app')->name('home.index');
This works well, but I'm not sure if there's a better way to do it. My second question is about the “profile” that appears in the top right-hand corner of the header when we're logged in. I would like to have something similar to that, but in the app panel, I tried a few things, but it didn't work. Sorry if I've gone on too long, thanks.
5 replies