\Slowlyo\OwlAdmin\Admin::view()); Route::group([ 'domain' => config('admin.route.domain'), 'prefix' => config('admin.route.prefix'), 'middleware' => config('admin.route.middleware'), ], function (Router $router) { $router->get('dashboard', [\App\Admin\Controllers\HomeController::class, 'index'])->name('dashboard'); $router->resource('system/settings', \App\Admin\Controllers\SettingController::class)->only(['index', 'store']); $router->resource('system/keywords', \App\Admin\Controllers\KeywordController::class); });