Kaesa Lyrih
Help Us Improve Filament’s Docs & Education in v4
Update documentation about Action Filament:
1. Filament Actions vs Laravel Actions
- Is there any documentation explaining the difference between Filament actions and Laravel actions? If such an explanation exists, it would be really helpful.
2. Injecting
- How can I inject
- In some cases, I want my business logic—such as creating a user in the database, sending an email, notifying the admin, etc.—to reside in
- If there is any official guidance on this, that would be great.
3. Getting the current model in
- How can I get the current model's data inside
- I need to pass the current model's data to the modal form inside the action.
- Is there any documentation related to this?
4. Missing
- It seems like there is no
- Are there any plans to introduce this command?
- Is there any documentation explaining the difference between Filament actions and Laravel actions? If such an explanation exists, it would be really helpful.
2. Injecting
app/Actions/CreateUser.php
into Filament\Actions\CreateAction::make()
- How can I inject
app/Actions/CreateUser.php
into Filament\Actions\CreateAction::make()
?- In some cases, I want my business logic—such as creating a user in the database, sending an email, notifying the admin, etc.—to reside in
app/Actions/CreateUser.php
.- If there is any official guidance on this, that would be great.
3. Getting the current model in
EditAction
- How can I get the current model's data inside
EditAction
?- I need to pass the current model's data to the modal form inside the action.
- Is there any documentation related to this?
4. Missing
php artisan make:filament-action
- It seems like there is no
php artisan make:filament-action
command yet.- Are there any plans to introduce this command?
69 replies
is there any filament feature or plugin available for mention users ?
Thanks you, I'll start tracking the code from this commit:
https://github.com/ploi/roadmap/commit/b3f9a29a58ca6069b22a44a02aab33fdb9c0fd90#diff-d2ab9925cad7eac58e0ff4cc0d251a937ecf49e4b6bf57f8b95aab76648a9d34
8 replies
Profile view and profile edit
humm.. maybe CustomPage not extended
\Filament\Pages\Auth\EditProfile::class
u can try it:
https://medium.com/@laravelprotips/personalizing-the-filament-profile-page-expanding-the-design-and-integrating-multiple-forms-62db7ca6834313 replies
how to get data in action child from action parent?
My study case, solve with action chanining.
https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component#chaining-actions
6 replies