If you use Route Model Binding and think you can't use Eager Loading for relationships, think again.
So you use Route Model Binding
1public function show(Product $product) {2 //3}
But you have a belongsTo relationship, and cannot use $product->with('category') eager loading?
You actually can! Load the relationship with ->load()
1public function show(Product $product) {2 $product->load('category');3 //4}