jals65
jals65
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
Thanks, I'll try it!
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
In my case, I use phpstorm. I've integrated a Jetbrains extension into claude.ai to give it context for my code. I've also managed to link to some of my existing documentation to give it even more context. What I've observed is that it's much better to link text files directly to it, since if you connect it to a website, it won't link all the documentation correctly.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
yes, that's true. I have done tests with smaller documentations and only for myself, but it is true that on a large scale the cost would possibly be high.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
And the discord #❓┊help search it's so bad when you search more than 2 words.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
One of the improvements that also adds a lot of value is implementing a type of AI chatbot with context from Filament's documentation. This would greatly simplify searching for resources in the documentation. I've opened tickets in the #❓┊help channel a few times for things I couldn't find that were actually in the documentation. But since I wasn't searching for the exact words, it didn't come up. The chatbot An AI-powered chatbot with context from the documentation could resolve a lot of questions.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
Thanks! Good to know.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
No, I didn't know about those videos.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
My biggest problem when I started was the documentation related to customizations. When I wanted to create custom components or custom views, I always ran into quite a few problems with this since the documentation in that sense was scarce. This was largely fixed in v3 thanks to the "Adding to a Livewire component" sections, but it's still pretty sparse, and it could still be developed a little more in that regard. In general I see the rest very well.
81 replies
FFilament
Created by jals65 on 2/14/2025 in #❓┊help
Any way to get selected records on an bulkaction form?
thanks
6 replies
FFilament
Created by jals65 on 2/14/2025 in #❓┊help
Any way to get selected records on an bulkaction form?
I can't get $livewire in the function parameter, but i can do $this->getLivewire()->getSelectedTableRecords() and it works
6 replies
FFilament
Created by jals65 on 2/13/2025 in #❓┊help
UserResource on modularized app
Before making this change, in the UserResource I did not have the form function, since this form was autogenerated. Now, however, I have had to create the form, if I do not add this form manually nothing is displayed, only the save and cancel button appears.
7 replies
FFilament
Created by jals65 on 2/13/2025 in #❓┊help
UserResource on modularized app
All namespaces are correct and all the pages are moved.
7 replies
FFilament
Created by jals65 on 2/13/2025 in #❓┊help
UserResource on modularized app
Yes
7 replies
FFilament
Created by MacTavish on 11/20/2024 in #❓┊help
Open Modal after Action Execution to show the result
Thanks @Azorky, i'm going to review that
5 replies
FFilament
Created by MacTavish on 11/20/2024 in #❓┊help
Open Modal after Action Execution to show the result
I have the same problem. I'm doing an action with a form to create an api token.
Action::make('create_token')
->form([
TextInput::make('name')
->unique()
->required(),
DateTimePicker::make('expiration_date')
->required()
->minDate(now()->addHour()
])
->requiresConfirmation()
->action(function (array $data) {
$token = auth()->user()->createToken($data['name'], ['*'], new \DateTime($data['expiration_date']))->plainTextToken;
// Here then i want to open a new modal to show the $token value
})
Action::make('create_token')
->form([
TextInput::make('name')
->unique()
->required(),
DateTimePicker::make('expiration_date')
->required()
->minDate(now()->addHour()
])
->requiresConfirmation()
->action(function (array $data) {
$token = auth()->user()->createToken($data['name'], ['*'], new \DateTime($data['expiration_date']))->plainTextToken;
// Here then i want to open a new modal to show the $token value
})
I want to open a new modal after token it's created on ->action() to show the value of the token generated
5 replies
FFilament
Created by jals65 on 7/8/2024 in #❓┊help
Action don't works on custom ViewRecord page
Oo, thanks. That works.
5 replies
FFilament
Created by jals65 on 7/4/2024 in #❓┊help
Custom colum view
Thanks
7 replies
FFilament
Created by jals65 on 7/4/2024 in #❓┊help
Custom colum view
it works with $getState()
7 replies
FFilament
Created by jals65 on 6/25/2024 in #❓┊help
TextInput with follow action
Thanks for that @toeknee @Leandro Ferreira
10 replies
FFilament
Created by jals65 on 6/25/2024 in #❓┊help
TextInput with follow action
But any way to get it on the suffixAction?
10 replies