@include('emails.common.header') @component('emails.common.nested_table_header') @slot('first_name') {{ $rejectedInterview->interview->user->first_name }} @endslot @slot('message') Your profile has been reviewed with the regards to the following job application. @endslot @endcomponent @component('emails.common.nested_table') @slot('title') {{ $rejectedInterview->job->title }} @endslot @slot('job_id') {{ $rejectedInterview->job->unique_id }} @endslot @slot('industry') @if(isset($rejectedInterview->job->min_requirements->industry1)) {{ $rejectedInterview->job->min_requirements->industry1->name }} @endif @if(isset($rejectedInterview->job->min_requirements->industry2)) {{ $rejectedInterview->job->min_requirements->industry2->name }} @endif @endslot @slot('category') @if(isset($rejectedInterview->job->min_requirements->category1)) {{ $rejectedInterview->job->min_requirements->category1->name }} @endif @if(isset($rejectedInterview->job->min_requirements->category2)) {{ $rejectedInterview->job->min_requirements->category2->name }} @endif @endslot @slot('role_profile') Link @endslot @endcomponent @component('emails.common.nested_table_footer') @slot('message') This email is to inform you that your application was unsuccessful for the following reason: @endslot @slot('reason') {{ $rejectedInterview->rejection_reason }} @endslot @slot('message2') We make decisions based on the information provided in your profile; please make sure it is always up to date. @endslot @endcomponent @include('emails.common.footer')