app/Helpers/Functions.php
function sizeForHumans($bytes){ if ($bytes >= 1000000000) { $bytes = number_format($bytes / 1000000000, 1) . 'GB'; } elseif ($bytes >= 1000000) { $bytes = number_format($bytes / 1000000, 1) . 'MB'; } elseif ($bytes >= 1000) { $bytes = number_format($bytes / 1000, 0) . 'KB'; } elseif ($bytes > 1) { $bytes = $bytes . ' bytes'; } elseif ($bytes == 1) { $bytes = $bytes . ' byte'; } else { $bytes = '0 bytes'; } return $bytes;}