Can you please paste the actual link that you click on?
Thank you but I solved the problem. I have wrong order in my Routes It was
Route::get('categories/{id}', 'CategoryProductsController@index');
Route::resource('categories', 'CategoriesController');
Route::resource('categories.products', 'CategoryProductsController');
I changed it to:
Route::resource('categories', 'CategoriesController');
Route::get('categories/{id}', 'CategoryProductsController@index');
Route::resource('categories.products', 'CategoryProductsController');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community