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
Using Laravel 5.5
Route::resource('admin/posts/tags', 'PostTagController', ['as' => 'posts']);
important to keep in mind the "resource"
For example, I send something from my project: