'apanel', 'middleware' => ['auth'], 'as' => 'cms.', ], function () { Route::group( [ 'prefix' => 'cms', 'as' => 'destinations.', 'controller' => 'DestinationController', ], function () { Route::get('destinations', 'index')->name('index'); Route::get('destinations/create', 'create')->name('create'); Route::post('destinations/store', 'store')->name('store'); Route::get('destinations/{uuid}/edit', 'edit')->name('edit'); Route::put('destinations/{uuid}/update', 'update')->name('update'); Route::delete('destinations/{uuid}/delete', 'destroy')->name('delete'); } ); } );