Articles

Eloquent under the hood: where is the where method?

Sep 03, 2022

When you look through the source code for the [Model class](https://github.com/laravel/framework/blob/9.x/src/Illuminate/Database/Eloquent/Model.php),

Read more

What's the N+1 problem and how do you avoid it?

Sep 03, 2022

Picture this, your page is taking too long to load, you use [Laravel debugbar](https://github.com/barryvdh/laravel-debugbar), [Telescope](https://lara

Read more

5 Eloquent features you might have missed

Aug 20, 2022

Eloquent is one of the most powerful features of the Laravel framework. You can use Eloquent daily for years without knowing all the features it has t

Read more

Run a scheduler command on workdays excluding holidays

Jul 07, 2022

Laravel has some very helpful methods that allow us to customize when our commands are executed. Unfortunately, sometimes we need a little more contro

Read more

Signed URLs with Laravel

Apr 02, 2022

In a project, you might need to generate unique URLs that perform some code where you need to make sure that the user didn't change the URL in any way

Read more