Answers for "used resoure route how to add another route"

PHP
1

used resoure route how to add another route

Just add a route to that method separately, before you register the resource:
-------------------------------------------------------------------------------
Route::get('foo/bar', 'FooController@bar');
Route::resource('foo', 'FooController');
Posted by: Guest on October-28-2021

Code answers related to "used resoure route how to add another route"

Browse Popular Code Answers by Language