This commit is contained in:
2023-08-03 22:37:57 +02:00
parent 620217e1d5
commit 6a033d108c
5 changed files with 85 additions and 4 deletions

View File

@@ -10,6 +10,8 @@ Route::name('admin.')->group(function () {
Route::name('message.')->prefix('message')->group(function (): void {
Route::get('', 'MessageController@index')
->name('index');
Route::get('{message}', 'MessageController@show')
->name('show');
});
Route::name('cv.')->prefix('cv')->group(function (): void {
Route::get('', 'CVController@index')