main
Ilham Wara Nugroho 2026-03-03 14:00:13 +07:00
parent bf7c599c4c
commit a854d677dc
1 changed files with 3 additions and 1 deletions

View File

@ -389,7 +389,9 @@ if (!function_exists('kuesionerLogStatus')) {
if(@$log->status == 11){ if(@$log->status == 11){
$progress = '<span class="badge bg-success text-white">Terbit SK</span>'; $progress = '<span class="badge bg-success text-white">Terbit SK</span>';
}else{ }else{
$progress = '<span class="badge bg-warning text-white">'.str_replace('_',' ',\Str::title($log->step)).'</span>'; if(@$log){
$progress = '<span class="badge bg-warning text-white">'.str_replace('_',' ',\Str::title(@$log->step)).'</span>';
}
} }
} }
return $progress; return $progress;