Articles in this series
Introduction The goal of this project was to practice PHP, understand how frameworks work under the hood, and learn something new. 😃 MVC: Every...
Dependency Injection Dependency Injection is a pattern that allows us to break apart dependants from their dependencies and have the power to...
Database Currently, our model is a bit useless, so let's make it use data from Database instead of a hardcoded one.First, create a database, create...
Migrations are grate so let's add them 😃 Create Migrations folder and add Migration.php <?php namespace Migrations; use Core\Database; class...