## Manager the database of system Working with `MVC` pattern (model, view, control). The Models've responsibility of receive the database searchs. Make methods in ModelBase to manager the searchs. _e.g.:_ - [ ] **find(int $id):** _find item by **id**_ - [ ] **findBy{Slug}(string $slug):** _find item by **column**_ - [ ] **limit(int $limit):** _limit items of search_ - [ ] **all():** _get all items values_ - [ ] **first():** _get first item of table_ - [ ] **last():** _last item of table_
Manager the database of system
Working with
MVCpattern (model, view, control).The Models've responsibility of receive the database searchs.
Make methods in ModelBase to manager the searchs.
e.g.: