#php
Read more stories on Hashnode
Articles with this tag
In the my last blog post I explained what the Repository pattern is, how it is different from the Active Record pattern and how you can implement it...
In most web applications accessing a database makes up a substantial portion of the code base. To avoid sprinkling plain SQL queries all over our...
In Laravel, instances of Collections are used absolutely everywhere. There are lots of methods you can use on them. In the beginning, I just used the...
The + Operator vs. array_merge ยท Appending or merging is a common array operation. And since arrays are used everywhere in PHP, you cannot afford not to...