David
Blue Collar Dev

Blue Collar Dev

Follow
homebadgesnewsletter
Tag

PHP

#php

More content

Read more stories on Hashnode


Articles with this tag

Why Use The Repository Pattern in Laravel?

Nov 8, 20217 min read

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...

Why Use The Repository Pattern in Laravel?

Repository Pattern in Laravel

Oct 20, 20218 min read

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...

Repository Pattern in Laravel

7 Laravel Collection Methods You Might Not Know

Oct 12, 20214 min read

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...

7 Laravel Collection Methods You Might Not Know

How to Append Arrays in PHP

Oct 5, 20215 min read

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...

How to Append Arrays in PHP