Customized action button "Apply"
I want to create a customized action button "Apply" in job listing table, and when I click it will direct to Filament applicaiton form to create a new application, same time pass the job listing id to the applicaiton form, how to do that without creating new route and Laravel view, thanks!
Solution:Jump to solution
You could pass the ID as a GET param and retrieve that get param in the
mount()
method of the CreatePage2 Replies
Solution
You could pass the ID as a GET param and retrieve that get param in the
mount()
method of the CreatePageThanks!