diff --git a/app/Helpers/helpers.php b/app/Helpers/helpers.php index d2a0006..e6fd186 100644 --- a/app/Helpers/helpers.php +++ b/app/Helpers/helpers.php @@ -31,7 +31,7 @@ function html_link_to_route($name, $title = null, $parameters = [], $attributes return app('html')->decode(link_to_route($name, $title, $parameters, $attributes)); } -function formatSizeUnits($bytes) +function format_size_units($bytes) { if ($bytes >= 1073741824) { $bytes = number_format($bytes / 1073741824, 2).' GB'; diff --git a/resources/views/backups/index.blade.php b/resources/views/backups/index.blade.php index 745e233..2848ff7 100644 --- a/resources/views/backups/index.blade.php +++ b/resources/views/backups/index.blade.php @@ -21,7 +21,7 @@