'apanel', 'middleware' => ['auth'], 'as' => 'cms.', ], function () { Route::group( [ 'prefix' => 'cms', 'as' => 'contactUs.', 'controller' => 'ContactUsController', ], function () { Route::get('contact-us', 'index')->name('index'); Route::post('contact-us/{uuid}', 'show')->name('show'); // Route::post('contact-us/reply/{uuid}', 'replyToMail')->name('replyMail'); Route::delete('contact-us/{uuid}/delete', 'destroy')->name('delete'); } ); } );