@include('emails.common.header')
Following candidates are selected for a job {{ $job->title }}
@foreach($formData['candidateData'] as $key => $candidate)
Name : {{ $candidate['name'] }}
Profile Summary :
@if($candidate['profile_summary'])
{{ $candidate['profile_summary'] }}
@else
-
@endif
Current salary :
@if($candidate['current_salary'])
{{ $candidate['current_salary'] }}
@else
-
@endif
Current location :
@if($candidate['current_location'])
{{ $candidate['current_location'] }}
@else
-
@endif
Applied with :
@if($candidate['apply_by'] == 'pdf_cv')
PDF CV
@else
-
@endif
Additional notes :
@if($candidate['additional_notes'])
{{ $candidate['additional_notes'] }}
@else
-
@endif
Closing note: {{ $formData['closing_note'] }}
@include('emails.common.footer')