1. How Organize Better Laravel Applications Separating Actions on Models from Custom Actions
Web applications in PHP.
Among other benefits, it provides means to easily create model classes that can be used to store and retrieve application model object data in databases. These model classes implement functions to create, read, update and delete objects from the database.
This package provides a trait that can be used to register callback functions that can be used to integrate better the actions performed by model classes using external classes.
This way the organization of application functions can be improved by separating the actions of model classes from any custom actions that may need to be performed by other components.
More ... Post a comment See comments (0) Trackbacks (0)
Among other benefits, it provides means to easily create model classes that can be used to store and retrieve application model object data in databases. These model classes implement functions to create, read, update and delete objects from the database.
This package provides a trait that can be used to register callback functions that can be used to integrate better the actions performed by model classes using external classes.
This way the organization of application functions can be improved by separating the actions of model classes from any custom actions that may need to be performed by other components.
More ... Post a comment See comments (0) Trackbacks (0)