// Method to calculate percentage public static function percentage($part, $whole) { if ($whole != 0) { return ($part / $whole) * 100; } else { return 0; } }