{{-- 재직증명서 읽기전용 렌더링 Props: $content (array) - approvals.content JSON --}}
{{-- 인적사항 --}}

1. 인적사항

성명
{{ $content['name'] ?? '-' }}
주민등록번호
{{ $content['resident_number'] ?? '-' }}
주소
{{ $content['address'] ?? '-' }}
{{-- 재직사항 --}}

2. 재직사항

회사명
{{ $content['company_name'] ?? '-' }}
사업자번호
{{ $content['business_num'] ?? '-' }}
근무부서
{{ $content['department'] ?? '-' }}
직급
{{ $content['position'] ?? '-' }}
재직기간
{{ $content['hire_date'] ?? '-' }}
{{-- 발급정보 --}}

3. 발급정보

사용용도
{{ $content['purpose'] ?? '-' }}
발급일
{{ $content['issue_date'] ?? '-' }}
{{-- 첨부파일 --}} @if(!empty($approval->attachments))
첨부파일
@foreach($approval->attachments as $file)
{{ $file['name'] ?? '파일' }} {{ isset($file['size']) ? number_format($file['size'] / 1024, 1) . 'KB' : '' }}
@endforeach
@endif