You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.. important:: The routes are matched in the order they are specified, so if you have a resource photos above a get 'photos/poll' the show action's route for the resource line will be matched before the get line. To fix this, move the get line above the resource line so that it is matched first.
46
46
@@ -138,17 +138,17 @@ Its usage is similar to the resosurce routing::
138
138
$routes->presenter('photos');
139
139
140
140
// Equivalent to the following:
141
-
$routes->get('photos', 'Photos::index');
142
-
$routes->post('photos', 'Photos::create'); // alias
0 commit comments