@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.nested_table_header')
@slot('first_name')
{{$candidate->first_name }}
@endslot
@slot('message')
This email is to provide an update on the following role:
@endslot
@endcomponent
@component('emails.common.p')
Title :
@endcomponent
|
@component('emails.common.p')
{{ $job->title }}
@endcomponent
|
@if(isset($job->min_requirements->industry1) || isset($job->min_requirements->industry2))
@component('emails.common.p')
Industry :
@endcomponent
|
@if(isset($job->min_requirements->industry1))
{{ $job->min_requirements->industry1->name }}
@endif
@if(isset($job->min_requirements->industry2))
, {{ $job->min_requirements->industry2->name }}
@endif
|
@endif
@if(isset($job->min_requirements->category1) || isset($job->min_requirements->category2))
@component('emails.common.p')
Category :
@endcomponent
|
@if(isset($job->min_requirements->category1))
{{ $job->min_requirements->category1->name }}
@endif
@if(isset($job->min_requirements->category2))
, {{ $job->min_requirements->category2->name }}
@endif
|
@endif
@component('emails.common.p')
Role Profile :
@endcomponent
|
@component('emails.common.p')
Link
@endcomponent
|
|
@component('emails.common.td')
@component('emails.common.p')
The position has recently been placed on hold by your Talent Advisor; this could be for any of the following
reasons:
@component('emails.common.ul')
The hiring organisation has decided to focus on other priorities
There will be a delay in decision making process
The vacancy and its requirement may be changing slightly
@endcomponent
@endcomponent
@component('emails.common.p')
You can contact your Talent Advisor if you have further questions.
@endcomponent
@component('emails.common.p')
Thank you & have a nice day
@endcomponent
@component('emails.common.telent-advices-footer')
@slot('name')
{{ $job->recruiter->present()->name }}
@endslot
@slot('email')
{{ $job->recruiter->email }}
@endslot
@slot('mobile')
{{ $job->recruiter->mobile }}
@endslot
@slot('url')
@if($job->recruiter->profiles && $job->recruiter->profiles->linkedin_profile)
{{ $job->recruiter->profiles->linkedin_profile }} - Let's connect
@endif
@endslot
@endcomponent
@endcomponent
@endcomponent
@include('emails.common.footer')