diff --git a/resources/views/metrics/index.blade.php b/resources/views/metrics/index.blade.php
index b7bd674..e60a8f6 100644
--- a/resources/views/metrics/index.blade.php
+++ b/resources/views/metrics/index.blade.php
@@ -63,19 +63,19 @@ class="h-[200px] !p-0"
Total Memory
- {{ $lastMetric ? Number::format($lastMetric->memory_total / 1024, 0) : "-" }} MB
+ {{ $lastMetric ? number_format((int) ($lastMetric->memory_total / 1024)) : "-" }} MB
Used Memory
- {{ $lastMetric ? Number::format($lastMetric->memory_used / 1024, 0) : "-" }} MB
+ {{ $lastMetric ? number_format((int) ($lastMetric->memory_used / 1024)) : "-" }} MB
Free Memory
- {{ $lastMetric ? Number::format($lastMetric->memory_free / 1024, 0) : "-" }} MB
+ {{ $lastMetric ? number_format((int) ($lastMetric->memory_free / 1024)) : "-" }} MB
@@ -83,19 +83,19 @@ class="h-[200px] !p-0"
Total Space
- {{ $lastMetric ? Number::format($lastMetric->disk_total) : "-" }} MB
+ {{ $lastMetric ? number_format($lastMetric->disk_total) : "-" }} MB
Used Space
- {{ $lastMetric ? Number::format($lastMetric->disk_used) : "-" }} MB
+ {{ $lastMetric ? number_format($lastMetric->disk_used) : "-" }} MB
Free Space
- {{ $lastMetric ? Number::format($lastMetric->disk_free) : "-" }} MB
+ {{ $lastMetric ? number_format($lastMetric->disk_free) : "-" }} MB