Laravel.io
Route::prefix('skills')->name('skills.')->group(function () {
        Route::resource('/', 'SkillsController',
            ['names' => [
                'index' => 'index',
                'create' => 'create',
                'store' => 'store',
                'edit' => 'edit',
                'update' => 'update',
                'destroy' => 'destroy',
            ]]);
        Route::get('download', 'SkillsController@export')->name('download');

        /*Route::prefix('skills')->name('skills.')->group(function () {
        Route::resource('/', 'SkillsController');
        Route::get('download', 'SkillsController@export')->name('download');
    });*/
    });

Please note that all pasted data is publicly available.