feat: [attendance] 근태현황/근태관리 메뉴 분리

- 근태현황(/hr/attendances): 조회 전용 (목록/캘린더/요약)
- 근태관리(/hr/attendances/manage): CRUD + 승인 관리
- table-manage.blade.php: 관리용 테이블 (체크박스/수정/삭제)
- table.blade.php: 조회용 테이블 (GPS 포함, CRUD 제거)
- API 컨트롤러 view 파라미터로 테이블 분기
This commit is contained in:
김보곤
2026-02-26 22:20:48 +09:00
parent 4462646550
commit 5283487f7e
7 changed files with 978 additions and 709 deletions

View File

@@ -903,6 +903,7 @@
// 근태현황
Route::prefix('attendances')->name('attendances.')->group(function () {
Route::get('/', [\App\Http\Controllers\HR\AttendanceController::class, 'index'])->name('index');
Route::get('/manage', [\App\Http\Controllers\HR\AttendanceController::class, 'manage'])->name('manage');
});
// 휴가관리