Added Client name to logs along with a link to the client logs page

This commit is contained in:
johnnyq
2022-02-21 21:56:16 -05:00
parent b4114fdad3
commit 29422b9d52
2 changed files with 14 additions and 4 deletions

View File

@@ -186,11 +186,11 @@ $sql_recent_logs = mysqli_query($mysqli,"SELECT * FROM logs
$log_created_at = $row['log_created_at'];
if($log_action == 'Created'){
$log_icon = "plus";
$log_icon = "plus text-success";
}elseif($log_action == 'Modified'){
$log_icon = "edit";
$log_icon = "edit text-info";
}elseif($log_action == 'Deleted'){
$log_icon = "trash-alt";
$log_icon = "trash-alt text-danger";
}else{
$log_icon = "pencil";
}