Alexandre
Alexandre
FFilament
Created by Alexandre on 2/21/2025 in #❓┊help
How do I use actions on a ViewRecord page?
Oh mamma mia, I'm an idiot but it's almost the weekend 😂. I'm going to make the most of it by picking daisies in the fields and getting some fresh air. 😂 Sorry 😅
10 replies
FFilament
Created by Alexandre on 2/21/2025 in #❓┊help
How do I use actions on a ViewRecord page?
No description
10 replies
FFilament
Created by Alexandre on 2/21/2025 in #❓┊help
How do I use actions on a ViewRecord page?
Hi, thanks for your answer but that didn't change anything 😥
10 replies
FFilament
Created by Alexandre on 2/11/2025 in #❓┊help
Need advice on the login logic of my application
Thank you for your response. I thought about it at first, but I wasn't quite sure how to retrieve the entire nested layout of filament (not just the login form but HTML, body, ...), which I feel are other Livewire components Knowing that I will also need to do the same with the passwordReset. The whole thing seemed a bit tricky to me, but I might be mistaken... 😅 And the advantage here is that I can put it on Filament without having to tweak my views... Aside from the URL, do you see any potential issues with what I’ve implemented?
7 replies
FFilament
Created by Alexandre on 1/27/2025 in #❓┊help
Is it possible to display key : value in a TextColumn ?
Ahhh I see, thank you for your clarification 🙂
7 replies
FFilament
Created by Alexandre on 1/27/2025 in #❓┊help
Is it possible to display key : value in a TextColumn ?
No description
7 replies
FFilament
Created by Finn on 1/23/2025 in #❓┊help
Disable search engine indexing
Hi, For my part, I add the meta tag in the HEAD_START hook directly in the boot() of my AppServiceProvider:
public function boot(): void
{
FilamentView::registerRenderHook(
PanelsRenderHook::HEAD_START,
fn(): string => '<meta name="robots" content="noindex, nofollow" />',
);

}
public function boot(): void
{
FilamentView::registerRenderHook(
PanelsRenderHook::HEAD_START,
fn(): string => '<meta name="robots" content="noindex, nofollow" />',
);

}
4 replies
FFilament
Created by Rolland on 11/18/2024 in #❓┊help
No application encryption key has been specified
Hi, Do you have a value associated with APP_KEY in your .ENV file? If not, you can use the php artisan key:generate command to create it.
5 replies
FFilament
Created by NothingToSay on 11/12/2024 in #❓┊help
Disable back button for wizard on modal
Hi. You have this method : ->previousAction() So you can try that : ->previousAction(fn (Action $action): Action => $action->extraAttributes(['class' => 'hidden'])) Cf. https://github.com/filamentphp/filament/discussions/9942#discussioncomment-7702242
5 replies
FFilament
Created by dyo on 11/11/2024 in #❓┊help
Adjust the component height
And when you look in the inspector, can you see that the CSS class has been added?
8 replies
FFilament
Created by Alexandre on 9/3/2024 in #❓┊help
Incremental itemLabel for repeater
No description
7 replies
FFilament
Created by Asmit Nepali on 10/15/2024 in #❓┊help
File Upload Issue
The image sent is in base64. Try increasing the value of your client_max_body_size in php.ini (and maybe post_max_size too)
9 replies
FFilament
Created by Asmit Nepali on 10/15/2024 in #❓┊help
File Upload Issue
Do you have a particular error in your console?
9 replies
FFilament
Created by Asmit Nepali on 10/15/2024 in #❓┊help
File Upload Issue
Just to be sure, is the max file upload size value sufficient in your php.ini file?
9 replies
FFilament
Created by Alexandre on 9/3/2024 in #❓┊help
Incremental itemLabel for repeater
I found a solution on Github for those who are looking too :
->itemLabel(function ($state, $component) {
$key = array_search($state, $component->getState());
$index = array_search($key, array_keys($component->getState()));

return 'Réponse n°'.$index + 1;
})
->itemLabel(function ($state, $component) {
$key = array_search($state, $component->getState());
$index = array_search($key, array_keys($component->getState()));

return 'Réponse n°'.$index + 1;
})
And that work like expected 🥳 Source : https://github.com/filamentphp/filament/discussions/8565#discussioncomment-7031649
7 replies
FFilament
Created by Alexandre on 8/14/2024 in #❓┊help
Create resource not found
🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️ Thanks, that was it and it works. Sorry and thanks again 😅
5 replies
FFilament
Created by Alexandre on 7/17/2024 in #❓┊help
afterStateUpdated not work on custom field
Okay, that's it. It works 🥳 Thank you so much for your help and patience Filament has an amazing community 🙏
14 replies
FFilament
Created by Alexandre on 7/17/2024 in #❓┊help
afterStateUpdated not work on custom field
Ah... I feel very stupid right now... 🫣 I'm sorry... I clicked on the label, which then selected the radio... Is it possible to have the afterStateUpdated called when the label is clicked? 🤔
14 replies
FFilament
Created by Alexandre on 7/17/2024 in #❓┊help
afterStateUpdated not work on custom field
14 replies
FFilament
Created by Alexandre on 7/17/2024 in #❓┊help
afterStateUpdated not work on custom field
Thanks again for your help. I just made the change. I don't get my DD() if I click on one of my radio buttons from my CylinderType input. However, I've noticed that if I click on any other input with a ->live() method, the DD() from my afterStateUpdated() appears.
14 replies