skip to Main Content

Laravel – How to overwrite reorder route?

I am trying to pass category id along with reorder route so I can list article based on the category. How can I overwrite reorder route like this Route::get($segment.'/{id}/reorder', [ 'as' => $routeName.'.reorder', 'uses' => $controller.'@reorder', 'operation' => 'reorder', ]);…

VIEW QUESTION
Back To Top
Search