@lang('recruit::modules.job.jobTitle')
{{ $application->job->title }}
@lang('recruit::modules.jobApplication.applicantEmail')
{{ ucfirst($application->email ?? '--') }}
@lang('recruit::modules.jobApplication.applicantPhone')
{{ $application->phone ?? '--' }}
@lang('recruit::modules.jobApplication.dateOfBirth')
{{ $application->date_of_birth->format($company->date_format) }}
@lang('recruit::modules.jobApplication.gender')
{{ ucfirst($application->gender ?? '--') }}
@lang('recruit::modules.jobApplication.experience')
@if ($application->total_experience == 'fresher') {{ $application->total_experience }} @else {{ $application->total_experience }} @lang('recruit::modules.jobApplication.years') @endif
@lang('recruit::modules.jobApplication.currentLocation')
{{ ucfirst($application->current_location ?? '--') }}
@lang('recruit::modules.jobApplication.currentCtc')
{{ currency_format($application->current_ctc, $currency ? $currency->id : company()->currency->id) }} @lang('recruit::modules.joboffer.per') {{ $application->currenct_ctc_rate }}
@lang('recruit::modules.jobApplication.expectedCtc')
{{ currency_format($application->expected_ctc, $currency ? $currency->id : company()->currency->id) }} @lang('recruit::modules.joboffer.per') {{ $application->expected_ctc_rate }}
@lang('recruit::modules.jobApplication.noticePeriod')
{{ $application->notice_period ?? '--' }} @lang('recruit::modules.jobApplication.days')
@lang('recruit::modules.front.applicationSource')
{{ $application->source->application_source ?? '--' }}
@lang('recruit::modules.jobApplication.appliedAt')
{{ $application->created_at->format($company->date_format) }}
@lang('app.remark')
{{ ucfirst($application->remark) ?? '--' }}
@lang('app.remark')
{{ ucfirst($application->rejection_remark) ?? '--' }}
@lang('recruit::modules.jobApplication.coverLetter')
{{ $application->cover_letter ?? '--' }}
@lang('recruit::modules.job.location')
{{ $address ? $address->location : '-' }}
@lang('recruit::modules.jobApplication.jobapplied')
{{ date('d-m-Y', strtotime($application->Job_applied_on)) }}
@lang('recruit::modules.jobApplication.skills')
@foreach ($skills as $item)
{{ $item['name'] }}
@endforeach