This commit is contained in:
2025-08-13 16:47:11 +03:30
parent f4060cd04e
commit dd2e016ad2
2 changed files with 3 additions and 3 deletions

View File

@@ -153,7 +153,7 @@ Route::middleware('auth')
->group(function () {
Route::get('/', 'index')->name('index');
Route::get('/excel', 'excel')->name('excel');
Route::post('/rate/{operatorDialogue}', 'rate')->name('rate');
Route::post('/rate', 'rate')->name('rate');
Route::get('/{operatorDialogue}', 'show')->name('show');
});
});