Support the ongoing development of Laravel.io →
Requests Views Blade
Last updated 2 years ago.
0

Can you please paste the actual link that you click on?

Last updated 2 years ago.
0

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');

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.