From 5abec840129cd028140ac4dc49ef23d8d08a9d49 Mon Sep 17 00:00:00 2001 From: pro Date: Fri, 30 Jan 2026 15:21:48 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EC=98=81=EC=97=85=20=EC=8B=A4=EC=A0=81(re?= =?UTF-8?q?cords)=20=EB=9D=BC=EC=9A=B0=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- routes/web.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routes/web.php b/routes/web.php index 507073b4..c36086ba 100644 --- a/routes/web.php +++ b/routes/web.php @@ -887,6 +887,9 @@ Route::get('/download-file/{consultation}', [\App\Http\Controllers\Sales\ConsultationController::class, 'downloadFile'])->name('download-file'); }); + // 영업 실적 관리 + Route::resource('records', \App\Http\Controllers\Sales\SalesRecordController::class); + // 매니저 지정 변경 Route::post('/tenants/{tenant}/assign-manager', [\App\Http\Controllers\Sales\SalesDashboardController::class, 'assignManager'])->name('tenants.assign-manager');