Using Laravel 4.2, is it possible to assign a name to a resource controller route? My route is defined as follows:
Route::resource(\'faq\', \'ProductFaqCont
I don't know if it's available in laravel 4.2 (I tested in 5.7) but you can use names to change the name of all routes generated by resource
Route::resource('faq', 'ProductFaqController', ['names' => 'something']);
and the result will be like this
something.index
and you don't need to specify each route