Solving the N+1 problem in Eloquent

Posted 3 min to read

When using such convenient tools as Eloquent ORM, it's easy to forget about the N+1 problem. Ignoring it may lead to serious server slowdowns at an unexpected time. In this article I'll explain what the problem is, how to solve it and detect it at an early stage before problems occur.

Read more

Multilanguage support in Laravel 7

Posted 7 min to read

Adding multilanguage support to Laravel application requires focusing on three main aspects: routing, user interface translation and database structure modification. In this article I will describe each of them and draw attention to good practices that are worth following.

Read more