ViewAction on resource's table listing page
Hi,
I have a model Estimate that has relationship to other model User. I want from ListEstimate page to have action that will open user info in a modal window (slideover). How to achive that? What I tried so far didn't work:
I have a model Estimate that has relationship to other model User. I want from ListEstimate page to have action that will open user info in a modal window (slideover). How to achive that? What I tried so far didn't work:
Solution
I've manage to find the solution to my problem using
In my
mountUsing() method on an action by inspecting how ViewAction works in the Filament. This is my solution:In my
form() method I am calling my custom class UserForm that define fields for this action and for my UserResource class.