@if ($log->status == 'failed')
@endif
@php
$resendConditions = [
'Candidate Short Listed Mail' => 'Short Listed',
'Scheduled Candidate Interview' => 'Scheduled',
'Rescheduled Candidate Interview' => 'Rescheduled',
'Candidate CTC & Offer Mail' => 'CTC & Offer Send To Candidate',
'CTC & Offer Accepted' => 'CTC & Offer Accepted By Candidate',
];
$showResend = false;
if ($log->subject == 'Welcome to Aarya Group Family' && $log->status == 'failed' && $log->is_resend == 0) {
$showResend = true;
} elseif (
$log->subject != 'Welcome to Aarya Group Family' &&
$interview->status != 'Generate Code' &&
$log->is_resend == 0
) {
if (isset($resendConditions[$log->subject]) && $resendConditions[$log->subject] == $interview->status) {
$showResend = true;
}
}
@endphp
@if ($showResend)
@endif