add start and finish action

This commit is contained in:
2025-06-11 16:19:25 +03:30
parent a38fd46770
commit b710a91140
3 changed files with 47 additions and 2 deletions

View File

@@ -469,6 +469,8 @@ Route::prefix('missions')
->controller(ControlUnitController::class)
->group(function () {
Route::get('/', 'index')->name('index');
Route::get('/start', 'start')->name('start');
Route::get('/finish', 'finish')->name('finish');
});
Route::prefix('details')
->name('details.')