Log 1891
23/07/2023 2023-07-23 18:44$customerType = “”; // Replace with actual value of customer type
$firstName = “”; // Replace with actual value of first name
$lastName = “”; // Replace with actual value of last name
$businessName = “”; // Replace with actual value of business name
if ($customerType == “לקוח פרטי”) {
return $firstName . ” ” . $lastName;
} else {
return $businessName;
}