I have a route like this:
Route::group(['prefix'=>'admin'],function(){
Route::resource('users','UserController'); // <-- what is the name of this route
});
How can I address the users
route by its name e.g route('users')
?
I tested users
and admin.users
but it didn't help.