In laravel 5.4 what is the best way to declare a resource route with slashes in the uri section?
For example in my routes/web.php I have:
Route::resource('/admin/settings', 'SettingController');
But if I have also this:
Route::resource('/settings', 'SettingController');
then laravel creates the same names for the routes which is in both cases settings.index, settings.store, settings.create
etc...