mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2025-04-22 12:13:26 +00:00
13 lines
273 B
PHP
13 lines
273 B
PHP
<?php
|
|
|
|
namespace Modules\LetsEncrypt\Filament\Clusters;
|
|
|
|
use Filament\Clusters\Cluster;
|
|
|
|
class LetsEncryptCluster extends Cluster
|
|
{
|
|
protected static ?string $navigationIcon = 'lets_encrypt-logo';
|
|
|
|
protected static ?string $navigationGroup = 'Server Management';
|
|
|
|
}
|