Nashoba
Nashoba
FFilament
Created by Nashoba on 3/27/2025 in #❓┊help
Add logout navigationItem to sidebar
Hello ! I'm trying to add a navigation item on my sidebar to logout, I made this in my panel :
->navigationItems([
NavigationItem::make('Déconnexion')
->url('/logout')
->icon('heroicon-o-arrow-left-start-on-rectangle')
->sort(12)
])
->navigationItems([
NavigationItem::make('Déconnexion')
->url('/logout')
->icon('heroicon-o-arrow-left-start-on-rectangle')
->sort(12)
])
but it's not the right method for logout and I can't link the Logout action because NavigationItem doesn't have something to do this
3 replies
FFilament
Created by Nashoba on 3/26/2025 in #❓┊help
How to change a column in users table after reseting password ? (like last_change_password) ?
Hi ! I made a Page for the first time connection of my users, and I have a date column set to null by default. I want to change this to the actual date when they submit the resetpassword form
7 replies
FFilament
Created by Nashoba on 3/21/2025 in #❓┊help
Should we duplicate code to make wizard edit steps ?
I made a big steps form to create my resource but for the edit should I duplicate this code ? (I hope no) Thank you
7 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
It is not possible to use a variable inside the make() of a FileUpload field ?
I try to make a dynamic field for a file but I get an error when I don't put a string directly inside the make() error : No synthesizer found for key: "" field : Forms\Components\FileUpload::make($eye."_pdf") ->name("{$eye}_pdf") ->label('Fichier PDF') ->directory('aic-surgery') ->hidden(fn ($get) => !self::isFieldVisible($eye, 'pdf', $get)), and $eye = 'left' or 'right'
12 replies
FFilament
Created by Nashoba on 2/27/2025 in #❓┊help
Passing ID to a custom header action in show page
Hello ! I'm having an issue when trying to create a specific resource. I basically have my MainResource show page and I add this inside : protected function getHeaderActions(): array { return [ Actions\Action::make('create patient') ->url(PatientResource::getUrl('create')) ->label('Ajouter un patient') ]; } this resource is related to my MainResource and it's like adding Patient to my Main, but I need to set the current Main Model id to the Patient I create, I don't know if that' clear 😅
3 replies
FFilament
Created by Nashoba on 2/26/2025 in #❓┊help
No synthesizer found for key: "" on FileUpload
Hello I just started filament and laravel one week ago, dans I'm facing this error when I try to upload a file using FileUpload. this is my code : Forms\Components\FileUpload::make("{$eye}_pdf") ->label('Fichier PDF') ->directory('patients') ->hidden(fn ($get) => !self::isFieldVisible($eye, 'pdf', $get)), Thank you for your help
13 replies