Mini0n
Mini0n
FFilament
Created by Mini0n on 9/21/2023 in #❓┊help
Custom Page: open modal from link
Thanks!
10 replies
FFilament
Created by Mini0n on 9/21/2023 in #❓┊help
Custom Page: open modal from link
I think I got it. In my code (not the one I put here) the action and the method had different names. That was causing the request to be made but no action taken. I had something like this:
public function updateUserAction(): Action
{
return Action::make('someActionName')
...
public function updateUserAction(): Action
{
return Action::make('someActionName')
...
In the blade I need to call $this->something then in the Livewire component I need to have a somethingAction() that has an Action::make('something') inside. Right?
10 replies
FFilament
Created by Mini0n on 9/21/2023 in #❓┊help
Custom Page: open modal from link
Anyone?
10 replies
FFilament
Created by Mini0n on 9/21/2023 in #❓┊help
Custom Page: open modal from link
My custom page extends the Filament\Pages\Page who in turn extends the BasePage that extends Livewire\Component and implements those interfaces. It's enough, right?
10 replies