@include('emails.common.header') @component('emails.common.table') @component('emails.common.td') @component('emails.common.p') @if($clientContact) Hello {{ $clientContact->first_name }}, @else Hello All, @endif @endcomponent @component('emails.common.p') Empower would like to present the requested documentation. @endcomponent @component('emails.common.p') If you click on each document title it will open up the document in your web browser and you can either download or print the document. @endcomponent
@foreach($candidateDocs['candidates'] as $candidateName => $candidate) @component('emails.common.p') Candidate: {{ $candidateName }} @endcomponent @if(isset($candidateDocs['uploads']) && isset($candidateDocs['uploads'][$candidateName])) @foreach($candidateDocs['uploads'][$candidateName] as $docName => $docs) @component('emails.common.p') {{ $docName }} @endcomponent @component('emails.common.ul') @foreach($docs as $doc)
  • {{ $doc->title }}
  • @endforeach @endcomponent @endforeach @endif @if(isset($candidateDocs['references']) && isset($candidateDocs['references'][$candidateName])) @component('emails.common.p') Reference Check @endcomponent @foreach($candidateDocs['references'][$candidateName] as $reference) @component('emails.common.ul')
  • {{ $reference->name }}-{{ $reference->created_at_formatted }}
  • @endcomponent @endforeach @endif
    @endforeach @component('emails.common.p') If you would like any further assistance please contact your Talent Advisor: @endcomponent @component('emails.common.p') {{ $job->recruiter->present()->name }}
    {{ $job->recruiter->email }}
    {{ $job->recruiter->mobile }}
    @if($job->recruiter->profiles && $job->recruiter->profiles->linkedin_profile) {{ $job->recruiter->profiles->linkedin_profile }} - Let's connect
    @endif {{ config('app.url')}} @endcomponent @endcomponent @endcomponent @include('emails.common.footer')