/home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Helpers
Edit: /home/techb158/ileadtechnology.com/vendor/spatie/laravel-backup/src/Helpers/Format.php (769B)
1024; $i++) {
$sizeInBytes /= 1024;
}
return round($sizeInBytes, 2).' '.$units[$i];
}
public static function emoji(bool $bool): string
{
if ($bool) {
return '✅';
}
return '❌';
}
public static function ageInDays(Carbon $date): string
{
return number_format(round($date->diffInMinutes() / (24 * 60), 2), 2).' ('.$date->diffForHumans().')';
}
}