Hey, my book is finally available. Find it here.  Eloquent Beyond The Basics!

Articles

How to handle long-running jobs in Laravel

1 year ago

Long-running jobs can be difficult to work with, they can: Be killed before they end Be difficult to retry Fail/Succeed depending on the input Fortu...

Read more

Laravel orWhere: how to use and group queries

1 year ago

In Laravel we can use the orWhere method to add an or SQL statement in our queries. The basic usage is pretty simple but it can get confusing when we...

Read more

Using pivot tables in Laravel: The complete guide to custom intermediary tables in many-to-many relationships

1 year ago

When working with many-to-many relationships the table structure is a little more complex than other relationships. When using many-to-many relationsh...

Read more

Which is faster: whereHas vs join

1 year ago

I have heard multiple times that whereHas queries are slower than join queries, so I decided to test it to figure out if I should stop writing whereHa...

Read more

Query a nested relationship with "where" clause using Eloquent

1 year ago

If you've ever run into a problem where you need to filter an Eloquent model by a relationship of a relationship and also eager load both of those rel...

Read more