Introducing the Laravel Super Quick Tutorial Series

I keep trying to get around to writing blog posts, little tips and tricks and things I’ve found when working with Laravel, to pass on answers to questions I’ve been asked, things I’ve taught to colleagues and peers, and the like. But writing long winded tutorials takes ages, so I never get around to it. …

Handling large data with cron jobs and queue workers

One problem a lot of developers seem to come into, from reading their code, is when they try to handle large sets of data with background scripts. There are a few common mistakes that I have seen from inheriting the code of my predecessors, and I thought I would offer some solutions to the problems …

Dependency Inversion and Interface Segregation using Laravel’s Service Container

In very short, we’re going to cover the Interface Segregation Principle (ISP) and the Dependency Inversion Principle (DIP) in this article, and practically how we implement them within a Laravel environment. Dependency Inversion Principle The principle is handy for the decoupling modules (making them independent of one another) Modules should not depend upon each other, …

Simple open source package for Laravel RESTful APIs

Hi everyone In my last post about creating simple search and filtering for Laravel I said I was considering creating a package to encapsulate this functionality. Well, I got this done a few weeks ago and have now released it onto Composer (Packagist) as kya/laravel-rest You can find the repository on GitHub here, and the …