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');
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.