mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 13:24:46 +02:00

* enable tags for nodes * update icon for cpu column * disable inline for "force outgoing ip" label * change label for database hosts resource * add custom empty state for database hosts & api keys * add icons to egg tabs * fix typo * rename node "Automatic Allocation" to avoid confusion * run code cleanup * remove regex for node name * only check count for application api keys * replace "New" with "Create" * change sidebar width to fit "Database Hosts"
32 lines
857 B
PHP
32 lines
857 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Resources\DatabaseHostResource\Pages;
|
|
use App\Models\DatabaseHost;
|
|
use Filament\Resources\Resource;
|
|
|
|
class DatabaseHostResource extends Resource
|
|
{
|
|
protected static ?string $model = DatabaseHost::class;
|
|
|
|
protected static ?string $label = 'Database Host';
|
|
|
|
protected static ?string $navigationIcon = 'tabler-database';
|
|
protected static ?string $navigationGroup = 'Advanced';
|
|
|
|
public static function getNavigationBadge(): ?string
|
|
{
|
|
return static::getModel()::count() ?: null;
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListDatabaseHosts::route('/'),
|
|
'create' => Pages\CreateDatabaseHost::route('/create'),
|
|
'edit' => Pages\EditDatabaseHost::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|