6 followers
๐ Hi! I'm a developer and blogger.
Interested in tools to maximize productivity.
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...
In database modelling, I often see that flags get introduced. Especially, as the the project gets older, important tables often accumulate more and...
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...
When writing code I often find myself using different tools depending on the workflow I'm currently in. In some workflows, like fixing a bug,...