badaso
badaso copied to clipboard
Detect sql views to create Crud on them
Is your feature request related to a problem? Please describe. No
Describe the solution you'd like Add sql views (in addition to tables) to Crud list to be able to create Crud on such entities.
Describe alternatives you've considered
- Create "as needed" a table from the sql view and create a Crud on this table. Ok with few data or data don't change often
OR
Create an eloquent model of this sql view. Create an empty table image of the sql view. Create a Crud on this table and set the model. Ok with Eloquent Model (not query builder)