feat: [payroll] 급여관리 기능 구현

- Payroll, PayrollSetting 모델 생성
- PayrollService 구현 (CRUD, 자동계산, 간이세액표, 일괄생성)
- Web/API 컨트롤러 생성 (HTMX/JSON 이중 응답)
- 급여 목록, 통계 카드, 급여 설정 뷰 생성
- 라우트 추가 (web.php, api.php)
- 상태 흐름: draft → confirmed → paid
This commit is contained in:
김보곤
2026-02-26 22:49:44 +09:00
parent 5283487f7e
commit 8f6911121c
11 changed files with 2354 additions and 0 deletions

View File

@@ -910,6 +910,11 @@
Route::prefix('leaves')->name('leaves.')->group(function () {
Route::get('/', [\App\Http\Controllers\HR\LeaveController::class, 'index'])->name('index');
});
// 급여관리
Route::prefix('payrolls')->name('payrolls.')->group(function () {
Route::get('/', [\App\Http\Controllers\HR\PayrollController::class, 'index'])->name('index');
});
});
/*