Hello, I'm looking for a tool that generates CRUD operations for any table automatically. It should account for table relationships, datatype validation, etc, depending on the table definition, and generate the necessary views. Do you guys know if there is code available to do this on laravel? Thank you, D.
You can use JeffreyWay/Laravel-Generators
for resource https://github.com/JeffreyWay/Laravel-Generators#resources
for scaffold (same as resource with boilerplate) https://github.com/JeffreyWay/Laravel-Generators#scaffolding
Thank you neil, Perhaps I didn't make my self clear. What I am looking for is a tool that dynamically creates a form to update or insert values on any table. The table name could be passed as a parameter to a controller, for example. The form would add dropdown lists for foreign key columns and datatype validators according to the table definition, etc. Thnaks.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community