fix: [document-template] R2 file_id 기반 이미지 URL 수정

- 문서양식 섹션 이미지를 file_id 기반 R2 프록시 URL로 변경
- getSectionImageUrl, _previewImageUrl에 file_id 우선 처리 추가
- 서버사이드 Blade(print, show)도 file_id 기반 URL 생성
- DocumentTemplateSection 모델에 file_id fillable 추가
- 업로드 응답에 file_id 반환, 복제 시 file_id 복사
This commit is contained in:
2026-03-13 21:51:08 +09:00
parent 432888980b
commit 845ffb58b8
11 changed files with 40 additions and 42 deletions

View File

@@ -16,6 +16,7 @@ class DocumentTemplateSection extends Model
'title',
'description',
'image_path',
'file_id',
'sort_order',
];