mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Admin\Resources;
|
|
|
|
use App\Filament\Admin\Resources\NodeResource\Pages;
|
|
use App\Filament\Admin\Resources\NodeResource\RelationManagers;
|
|
use App\Models\Node;
|
|
use Filament\Resources\Resource;
|
|
|
|
class NodeResource extends Resource
|
|
{
|
|
protected static ?string $model = Node::class;
|
|
|
|
protected static ?string $navigationIcon = 'tabler-server-2';
|
|
|
|
protected static ?string $navigationGroup = 'Server';
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
public static function getNavigationBadge(): ?string
|
|
{
|
|
return static::getModel()::count() ?: null;
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
RelationManagers\AllocationsRelationManager::class,
|
|
RelationManagers\NodesRelationManager::class,
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListNodes::route('/'),
|
|
'create' => Pages\CreateNode::route('/create'),
|
|
'edit' => Pages\EditNode::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|