Nashoba
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 :
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
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
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
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
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 help13 replies