Adding a Default Action Modal Button Next to a Column in Filament Table
I would like to add an "Edit" button next to a column in a Filament table and open the default action modal when the button is clicked. My goal is to place the button directly next to a TextColumn. How can I achieve this while using Filament's default action modal for each record in the table?
3 Replies
->action(Action::make('edit_1')->form()->action(fn($data) => '')) etc
see the table actions
Thank you tooknee You helped me a lot today.