Multiple forms for BlogResource
I have a resource for a blog. When I click on add, I have 3 forms:
Add:
form 1
form 2
form 3
The three forms share some fields, but each has other different fields. What is the best way to implement this?
Usually, in Laravel, I create 3 blade files, and the call is made through the link in this way:
/admin/blog/type/form/1
/admin/blog/type/form/2
/admin/blog/type/form/3
Do you have any better suggestions?
1 Reply
create 3 custom pages for each form
and use header action in the resource to add the links for them