* работа над функционалом автоматического заполнения

* исправил фантомный сдвиг даты
* переделал получение ФИО врачей из отделений
* добавил возможность поиска врача
* переписал сохранение отчета
This commit is contained in:
brusnitsyn
2026-02-05 17:11:43 +09:00
parent eab78a0291
commit 10fb138c30
22 changed files with 1192 additions and 654 deletions

View File

@@ -24,6 +24,9 @@ Route::get('/dashboard', [\App\Http\Controllers\Web\IndexController::class, 'ind
Route::get('/report', [\App\Http\Controllers\Web\ReportController::class, 'index'])
->middleware(['auth'])
->name('report');
Route::post('/report', [\App\Http\Controllers\Web\ReportController::class, 'store'])
->middleware(['auth'])
->name('report.store');
Route::get('/statistic', [\App\Http\Controllers\Web\StatisticController::class, 'index'])
->middleware(['auth'])
->name('statistic');