feat:성적서 인쇄뷰 + 문서 편집 버그 수정

- 성적서 인쇄뷰(print.blade.php) 추가: 동적 검사 테이블 렌더링
- DocumentController: print() 메서드, create/edit HTMX HX-Redirect 추가
- 기본필드 field_key: Str::slug→bf_{id} (한글 빈문자열 버그 수정)
- show.blade.php: 성적서 버튼 추가
- 양식 편집 UI 개선 + 복제 기능

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-01 20:37:01 +09:00
parent 5ddea44bef
commit 5e193e9f8e
7 changed files with 722 additions and 133 deletions

View File

@@ -350,6 +350,7 @@
Route::get('/', [DocumentController::class, 'index'])->name('index');
Route::get('/create', [DocumentController::class, 'create'])->name('create');
Route::get('/{id}', [DocumentController::class, 'show'])->whereNumber('id')->name('show');
Route::get('/{id}/print', [DocumentController::class, 'print'])->whereNumber('id')->name('print');
Route::get('/{id}/edit', [DocumentController::class, 'edit'])->whereNumber('id')->name('edit');
});