There is a strange problem in my Laravel routing. When I use this url everything goes perfect:
Route::get('properties/{product}', 'ProController@getpro');
But while I want to change the order like below, I get a 404 not found page:
Route::get('{product}/properties', 'ProController@getpro');
What is the problem?
http://127.0.0.1:8000/product/pizza-lake-dariusbury/properties 404 (Not Found)
I'm using Laravel installer version 2.0.1
laravel 2.0.1
version - Ayaz Ali ShahProController
routes declared? - Laerte