Apr 4, 2017
0
Level 1
Eager Loading with Pagination.
Good day. How to implement pagination with eager loading?
With this arrangement, it turns out a lot of requests.
$products = Catalogs::with('product.trademark', 'product.image', 'product.property.properties_value.properties_title')->where('category_id', '=', $id)->firstOrFail();
$products = $products->product()->paginate(10);
Please or to participate in this conversation.