#php
Read more stories on Hashnode
Articles with this tag
In software development, there are many design patterns; they are general concepts that will help you with common problems in your system, kind of a...
Migrations are grate so let's add them 😃 Create Migrations folder and add Migration.php <?php namespace Migrations; use Core\Database; class...
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...
Dependency Injection Dependency Injection is a pattern that allows us to break apart dependants from their dependencies and have the power to...
Introduction The goal of this project was to practice PHP, understand how frameworks work under the hood, and learn something new. 😃 MVC: Every...