From there you only have to return the correct view with the correct data
// ProductsController.php
public function images(Product $product)
{
return view('products.images', compact('product'));
}
If you have no clue what above code does I suggest to first look at some free series here on Laracasts and read the documentation. It's all explained :)
public function show(Product $product)
{
// Laravel will fetch the correct product and return it in the variable $product
return view('product-page-here', compact('product'));
}
I am assuming you have a controller named ProductsController and a model named Product