@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
@if($user)
Hello {{$user->first_name}},
@else
Hello All,
@endif
@endcomponent
@component('emails.common.p')
Congratulations you have successfully closed the {{$job->title}} role
@endcomponent
@component('emails.common.p')
The Signed Offer Letter can be viewed here: Link to Offer
Letter
@endcomponent
@component('emails.common.p')
Please find relevant candidate details:
Name : {{$candidate->first_name}} {{$candidate->last_name}}
Phone : {{$candidate->mobile}}
Email : {{$candidate->email}}
@endcomponent
@component('emails.common.p')
You can contact your Talent Advisor directly for further feedback.
@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')