config('backpack.base.route_prefix', 'admin'), 'middleware' => array_merge( (array) config('backpack.base.web_middleware', 'web'), (array) config('backpack.base.middleware_key', 'admin') ), 'namespace' => 'App\Http\Controllers\Admin', ], function () { // custom admin routes Route::crud('user', 'UserCrudController'); Route::crud('menu', 'MenuCrudController'); }); // this should be the absolute last line of this file