This is my routes
Route::get(‘/carts/{numericProductID}’, ‘AppHttpControllersShopifyController@showProductDetails’)
->name(‘showProductDetails’);
This is the link to direct to other page to show/fetch the details of the selected product
<a href="{{ route('showProductDetails', ['numericProductID' => $product['node']['id']]) }}">View Details</a>
1
What is the exact issue? please provide more context regarding your question.
13 mins ago