@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{$candidate->first_name }},
@endcomponent
@component('emails.common.p')
You recently conducted an interview with {{ $job->company->name }} for the
{{ $job->title }}.
@endcomponent
@component('emails.common.p')
A request has been made for you to provide the following documentation:
@component('emails.common.ul')
@if(!empty($interview->requestedDocs))
@foreach($interview->requestedDocs as $document)
{{ $document->documentDetails->name }}
@endforeach
@endif
@endcomponent
@endcomponent
@component('emails.common.p')
Please upload the document(s) at the document centre:
Link
@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')