eager loading

Posted by | September 18, 2017
Laravel: Eager loading

First, Lets understand why eager loading come in to existence! To understand nature of this problem, I am taking an example of below Laravel code. $users = User::take(5)->get(); it will...

Continue Reading