* закончил окно редактирования карты с назначением номера в архиве

* добавил окно для редактирования выдачи / возврата карты
* раздробил логику хранения карты
This commit is contained in:
brusnitsyn
2025-12-05 18:04:02 +09:00
parent 2dfa45707c
commit 2e1b5a3d0e
17 changed files with 431 additions and 13 deletions

View File

@@ -12,4 +12,14 @@ Route::prefix('si')->group(function () {
Route::get('{id}', [\App\Http\Controllers\MedicalHistoryController::class, 'patient']);
});
});
Route::prefix('archive')->group(function () {
Route::prefix('histories')->group(function () {
Route::get('{id}', [\App\Http\Controllers\ArchiveHistoryController::class, 'show']);
});
});
Route::prefix('orgs')->group(function () {
Route::get('/', [\App\Http\Controllers\OrgController::class, 'index']);
});
//Route::get('')