Performant Laravel


A course on quick performance wins
you can implement right now.

Watch Now!

The Route Cache

Use the route cache to skip route compilation on each request.

The Config Cache

Use the config cache to reduce configuration parsing & see its caveats.

Eager Loading

Use eager loading and avoid the dreaded n+1 query problem.

Chunking By Id

See how chunking by ID is much faster on large data sets.