[Vuejs]-Laravel: eager loading both belongsTo and HasMany relationships?

0👍

You can easily use nested eager loading like this

$productCategories = ProductCategory::with('products', 'products.productcategory')->get();

But you should consider re-using the ProductCategory value directly in your vue file.

Leave a comment