路径前缀
Route::prefix('dashboard')->group(function () {
Route::get('/', function () {
return 'root';
});
Route::get('users', function () {
return 'users';
});
});
Route::group(["prefix" => 'dashboard'], function () {
Route::get('/', function () {
return 'root';
});
Route::get('users', function () {
return 'users';
});
});Last updated