@version(2) @php use Zittme\Modules\Recruit\Models\Config as RcConfig; @endphp @load('../../../../assets/narae.css') @load('css/recruit.css') @load('css/narae.css') @php use Zittme\Modules\Recruit\Models\Config; $rc_step_names = ['접수완료', '서류전형', '면접전형', '합격통보', '입사확정']; $rc_can_cancel = in_array((string)$apply->status, ['received', 'screening'], true); @endphp

지원 현황으로

{{ $job->title ?? '지워진 공고' }}

접수번호 {{ $apply->apply_no }} · {{ zdate($apply->regdate, 'Y년 n월 j일') }} 접수

{{ Config::statusText($apply->status) }}
@if ($step_index >= 0)
    @foreach ($rc_step_names as $rc_i => $rc_step)
  1. {{ $rc_step }}
  2. @endforeach
@endif

기본 정보

이름
{{ $apply->name }}
@if ($apply->birthday)
생년월일
{{ zdate($apply->birthday, 'Y.m.d') }}
@endif
휴대전화
{{ $apply->phone }}
이메일
{{ $apply->email }}
@if ($apply->address)
주소
{{ $apply->address }}
@endif @if ((int)$apply->career_years > 0)
총 경력
{{ $apply->career_years }}년
@endif
@if (count($edu_list))

학력

@endif @if (count($career_list))

경력

@endif @if (count($license_list))

자격 · 면허

@endif @if ($apply->skills)

보유 역량

{{ $apply->skills }}

@endif @if ($apply->cover_letter)

자기소개

{!! nl2br(escape($apply->cover_letter)) !!}
@endif @if (count($file_list))

첨부

@endif @if ($rc_can_cancel)
지원 취소
@endif