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.
Source:stackexchange.com