Eloquent Relationships Tips Laravel
In this article, I'm going to share with you some tips that may help you.
Load Only the Columns You Need with Eager Loading
$products = Product::with('categories:id,name')->get();
Load Nested Relationship
Image this scenario: The user belongs to ...
codewithluis.hashnode.dev2 min read