Diogo Gomes
Diogo Gomes
FFilament
Created by Diogo Gomes on 9/10/2024 in #❓┊help
Login not working - admin/livewire/update 405 (Method Not Allowed)
No description
16 replies
FFilament
Created by Diogo Gomes on 10/19/2023 in #❓┊help
Rich Editor - Expired S3 Images
I'm using the rich editor with images uploads (s3 driver). I've used these instructions: https://filamentphp.com/docs/3.x/forms/fields/rich-editor#uploading-images-to-the-editor This works great, when creating the message and in the next few minutes. It seems that the s3 temporary url is being stored directly on the field. So, it's storing the url with an expiration date 5 minutes (default) after being created. Shouldn't this work as it is? or do we need to build some kind of regex to regenerate the temporary url and replace it? Thank you
6 replies
FFilament
Created by Diogo Gomes on 10/14/2023 in #❓┊help
Repeater add new item
I'm implementer a repeater on an HasMany Relation. And I want the repeater to have the existing items disabled. But when clicking the "add new" action, to show a new editable item with the submit (save) button. Is this possible with the repeater? If not, I will just implement a custom view. So right now my 2 problems are: - disabling edit for existing items - add a submit button to the new item form (when clicking the "add new" action
2 replies
FFilament
Created by Diogo Gomes on 10/14/2023 in #❓┊help
Repeater collapseAllAction and expandAllAction bug?
I'm trying to hide these 2 actions by:
->collapseAllAction(
fn (\Filament\Forms\Components\Actions\Action $action) => $action->visible(false),
)
->expandAllAction(
fn (\Filament\Forms\Components\Actions\Action $action) => $action->visible(false),
),
->collapseAllAction(
fn (\Filament\Forms\Components\Actions\Action $action) => $action->visible(false),
)
->expandAllAction(
fn (\Filament\Forms\Components\Actions\Action $action) => $action->visible(false),
),
But both action still appear at the top of the repeater. Is it a bug? I've also tried the $action->hidden(true)
2 replies
FFilament
Created by Diogo Gomes on 9/26/2023 in #❓┊help
File Upload on local non-public disc
No description
8 replies
FFilament
Created by Diogo Gomes on 9/19/2023 in #❓┊help
Set a global default date time format
Is there a way to set a default date time format? Instead of having to format all the fields individually...
6 replies
FFilament
Created by Diogo Gomes on 9/16/2023 in #❓┊help
Custom action on edit resource
No description
12 replies
FFilament
Created by Diogo Gomes on 9/16/2023 in #❓┊help
Wizard conditionally hiding next step
No description
7 replies
FFilament
Created by Diogo Gomes on 9/11/2023 in #❓┊help
File Download not working
No description
3 replies
FFilament
Created by Diogo Gomes on 8/4/2023 in #❓┊help
Custom Profile Page for logged in user
So I've followed the docs to create a custom EditProfile page: https://filamentphp.com/docs/3.x/panels/users#customizing-the-authentication-features But I can't figure out how to do 2 things: - how to add a link to this page to the sidebar - make it a regular page instead of being a modal Thank you
68 replies
FFilament
Created by Diogo Gomes on 6/30/2023 in #❓┊help
Navigation group without label
Is it possible to create navigation groups without labels for each group? Basically I want add a divider on the sidebar. I'm doing it with a navigation group, but that adds a group title that I don't want.
3 replies