diff --git a/app/Filament/Resources/DatabaseResource.php b/app/Filament/Resources/DatabaseResource.php index 55b8d60ba..d140fb98a 100644 --- a/app/Filament/Resources/DatabaseResource.php +++ b/app/Filament/Resources/DatabaseResource.php @@ -17,7 +17,7 @@ class DatabaseResource extends Resource { protected static ?string $model = Database::class; - protected static ?string $navigationIcon = 'heroicon-o-circle-stack'; + protected static ?string $navigationIcon = 'tabler-database'; public static function form(Form $form): Form { diff --git a/app/Filament/Resources/EggResource.php b/app/Filament/Resources/EggResource.php index 3d8d0d43f..93778453a 100644 --- a/app/Filament/Resources/EggResource.php +++ b/app/Filament/Resources/EggResource.php @@ -14,7 +14,7 @@ class EggResource extends Resource { protected static ?string $model = Egg::class; - protected static ?string $navigationIcon = 'heroicon-o-ellipsis-horizontal-circle'; + protected static ?string $navigationIcon = 'tabler-eggs'; protected static ?string $recordTitleAttribute = 'name'; @@ -146,7 +146,7 @@ class EggResource extends Resource ->wrap(), Tables\Columns\TextColumn::make('servers_count') ->counts('servers') - ->icon('heroicon-m-server-stack') + ->icon('tabler-server') ->label('Servers'), Tables\Columns\TextColumn::make('script_container') ->searchable() diff --git a/app/Filament/Resources/MountResource.php b/app/Filament/Resources/MountResource.php index db40a2f52..4f64f41ac 100644 --- a/app/Filament/Resources/MountResource.php +++ b/app/Filament/Resources/MountResource.php @@ -17,7 +17,7 @@ class MountResource extends Resource { protected static ?string $model = Mount::class; - protected static ?string $navigationIcon = 'heroicon-o-link'; + protected static ?string $navigationIcon = 'tabler-layers-linked'; public static function form(Form $form): Form { diff --git a/app/Filament/Resources/NodeResource.php b/app/Filament/Resources/NodeResource.php index 0bbf9b40d..4f10d5c03 100644 --- a/app/Filament/Resources/NodeResource.php +++ b/app/Filament/Resources/NodeResource.php @@ -14,7 +14,7 @@ class NodeResource extends Resource { protected static ?string $model = Node::class; - protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack'; + protected static ?string $navigationIcon = 'tabler-server-2'; protected static ?string $recordTitleAttribute = 'name'; @@ -72,8 +72,8 @@ class NodeResource extends Resource false => 'danger', ]) ->icons([ - true => 'heroicon-m-eye', - false => 'heroicon-m-lock-closed', + true => 'tabler-eye-check', + false => 'tabler-eye-cancel', ]), ]); } @@ -103,17 +103,17 @@ class NodeResource extends Resource ->sortable(), Tables\Columns\IconColumn::make('scheme') ->label('SSL') - ->trueIcon('heroicon-m-lock-closed') - ->falseIcon('heroicon-m-lock-open') + ->trueIcon('tabler-lock') + ->falseIcon('tabler-lock-open-off') ->state(fn (Node $node) => $node->scheme === 'https'), Tables\Columns\IconColumn::make('public') - ->trueIcon('heroicon-m-eye') - ->falseIcon('heroicon-m-eye-slash') + ->trueIcon('tabler-eye-check') + ->falseIcon('tabler-eye-cancel') ->sortable(), Tables\Columns\TextColumn::make('servers_count') ->counts('servers') ->label('Servers') - ->icon('heroicon-m-server-stack'), + ->icon('tabler-server'), Tables\Columns\TextColumn::make('created_at') ->dateTime() ->sortable() diff --git a/app/Filament/Resources/NodeResource/Pages/CreateNode.php b/app/Filament/Resources/NodeResource/Pages/CreateNode.php index 603385792..f2edbb6f9 100644 --- a/app/Filament/Resources/NodeResource/Pages/CreateNode.php +++ b/app/Filament/Resources/NodeResource/Pages/CreateNode.php @@ -59,7 +59,7 @@ class CreateNode extends CreateRecord ->inline() ->helperText(function (Forms\Get $get) { if (request()->isSecure()) { - return 'Your Panel is using a secure (https) connection, therefore your Daemon has to as well.'; + return 'Your Panel is using a secure (SSL/TLS) connection, therefore your Daemon has to as well.'; } if (is_ip($get('fqdn'))) { @@ -79,15 +79,15 @@ class CreateNode extends CreateRecord }) ->options([ 'http' => 'HTTP', - 'https' => 'SSL (HTTPS)', + 'https' => 'HTTPS (SSL)', ]) ->colors([ 'http' => 'warning', 'https' => 'success', ]) ->icons([ - 'http' => 'heroicon-m-lock-open', - 'https' => 'heroicon-m-lock-closed', + 'http' => 'tabler-lock-open-off', + 'https' => 'tabler-lock', ]) ->default('http'), Forms\Components\TextInput::make('name') diff --git a/app/Filament/Resources/ServerResource.php b/app/Filament/Resources/ServerResource.php index 62bd7d93f..d367d07f1 100644 --- a/app/Filament/Resources/ServerResource.php +++ b/app/Filament/Resources/ServerResource.php @@ -18,7 +18,7 @@ class ServerResource extends Resource { protected static ?string $model = Server::class; - protected static ?string $navigationIcon = 'heroicon-o-server-stack'; + protected static ?string $navigationIcon = 'tabler-server'; protected static ?string $recordTitleAttribute = 'name'; diff --git a/app/Filament/Resources/UserResource.php b/app/Filament/Resources/UserResource.php index c1418ef32..8f407adcc 100644 --- a/app/Filament/Resources/UserResource.php +++ b/app/Filament/Resources/UserResource.php @@ -17,7 +17,7 @@ class UserResource extends Resource { protected static ?string $model = User::class; - protected static ?string $navigationIcon = 'heroicon-o-user-group'; + protected static ?string $navigationIcon = 'tabler-users'; protected static ?string $recordTitleAttribute = 'username'; @@ -57,15 +57,15 @@ class UserResource extends Resource ->searchable(), Tables\Columns\IconColumn::make('root_admin')->label('Admin')->boolean()->sortable(), Tables\Columns\IconColumn::make('use_totp')->label('2FA') - ->icon(fn (User $user) => $user->use_totp ? 'heroicon-o-lock-closed' : 'heroicon-o-lock-open') + ->icon(fn (User $user) => $user->use_totp ? 'tabler-lock' : 'tabler-lock-open-off') ->boolean()->sortable(), Tables\Columns\TextColumn::make('servers_count') ->counts('servers') - ->icon('heroicon-m-server-stack') + ->icon('tabler-server') ->label('Servers Owned'), Tables\Columns\TextColumn::make('subusers_count') ->counts('subusers') - ->icon('heroicon-m-users') + ->icon('tabler-users') // ->formatStateUsing(fn (string $state, $record): string => (string) ($record->servers_count + $record->subusers_count)) ->label('Subusers'), Tables\Columns\TextColumn::make('created_at') diff --git a/app/Livewire/NodeSystemInformation.php b/app/Livewire/NodeSystemInformation.php index cefda7f72..b29190251 100644 --- a/app/Livewire/NodeSystemInformation.php +++ b/app/Livewire/NodeSystemInformation.php @@ -20,7 +20,7 @@ class NodeSystemInformation extends Component return <<<'HTML'