Log 4906
04/06/2025 2025-06-04 13:26$remaining_hours_percentage = 60;
$allocated_hours = 100;
if ($remaining_hours_percentage >= 80 && $remaining_hours_percentage <= $allocated_hours) {
return "מכסת שעות מתקרבת לניצול";
} else {
$utilized_percentage = (($allocated_hours – $remaining_hours_percentage) / $allocated_hours) * 100;
return number_format($utilized_percentage, 2) . "% נוצלו";
}