I have a question on how to draw a diagram for this scenario:
- Application in Laravel MVC
- Much like code in the view layers and controller wanted to omit it
- Facul's work
I wanted to know if it is possible and acceptable for me to just create the classes with the names and differentiate only those that have some business rule, something like this response: link
So instead of having diagrams in the views as:
CustomerList
Car Listing
Functional Listing
UpdateClient
Update Car
UpdateFunctional
...
I thought of doing so:
Listing
Update
...
As the views are similar I was wondering if I can do something generic without specifying the names in the CRUD related views
In the controller I think I just need to say (footnote) that the crud methods are very similar because of ORM and only leave the controllers' names without the methods, except for business rules.