@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)
-
{{ $rc_step }}
@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))
학력
@foreach ($edu_list as $rc_row)
-
{{ RcConfig::ym($rc_row->start_ym) }} ~ {{ RcConfig::ym($rc_row->end_ym) }}
{{ $rc_row->school }}
{{ $rc_row->major }} @if ($rc_row->degree){{ $rc_row->degree }}@endif @if ($rc_row->grad_state)· {{ $rc_row->grad_state }}@endif @if ($rc_row->score)· 학점 {{ $rc_row->score }}@endif
@endforeach
@endif
@if (count($career_list))
경력
@foreach ($career_list as $rc_row)
-
{{ RcConfig::ym($rc_row->start_ym) }} ~ @if ($rc_row->is_current === 'Y')재직 중@else{{ RcConfig::ym($rc_row->end_ym) }}@endif
{{ $rc_row->company }}
{{ $rc_row->dept_name }} @if ($rc_row->position)· {{ $rc_row->position }}@endif
@if ($rc_row->task){!! nl2br(escape($rc_row->task)) !!}@endif
@endforeach
@endif
@if (count($license_list))
자격 · 면허
@foreach ($license_list as $rc_row)
-
@if ($rc_row->issue_date){{ zdate($rc_row->issue_date, 'Y.m.d') }}@endif
{{ $rc_row->title }}
{{ $rc_row->issuer }} @if ($rc_row->license_no)· {{ $rc_row->license_no }}@endif
@endforeach
@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