From 46ba9bb8c6bd3d51c5e6b1c846746d422cbae8b0 Mon Sep 17 00:00:00 2001 From: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Date: Thu, 5 Dec 2024 11:54:47 +0000 Subject: [PATCH] Use filament::icon instead of raw svg & add hover title --- .../columns/server-entry-column.blade.php | 111 +++++------------- 1 file changed, 29 insertions(+), 82 deletions(-) diff --git a/resources/views/tables/columns/server-entry-column.blade.php b/resources/views/tables/columns/server-entry-column.blade.php index 4a31c97459..380c3a031c 100644 --- a/resources/views/tables/columns/server-entry-column.blade.php +++ b/resources/views/tables/columns/server-entry-column.blade.php @@ -5,12 +5,6 @@ align-items: center; gap: 0.75rem; } - - svg { - width: 1.75rem; - height: 1.75rem; - } -
@@ -27,92 +21,45 @@
-
- - - - {{ $getRecord()->egg->name }} +
+ + {{ $getRecord()->egg->name }}
-
- - - - - {{ $getRecord()->user->username }} +
+ + {{ $getRecord()->user->username }}
-
- - - - - - - - - - - {{ $getRecord()->allocation->address }} +
+ + {{ $getRecord()->allocation->address }}
-
- - - - - - - - - - - - CPU Usage - +
+ {{ $this->cpu($getRecord()) }}
-
- - - - - - - - - - - Memory Usage - {{ $this->memory($getRecord()) }} +
+ + {{ $this->memory($getRecord()) }}
-
- - - - - - - - - - - - Disk Usage - {{ $this->disk($getRecord()) }} +
+ + {{ $this->disk($getRecord()) }}