mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 07:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			957 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			957 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Filament\Resources;
 | |
| 
 | |
| use App\Filament\Resources\NodeResource\Pages;
 | |
| use App\Filament\Resources\NodeResource\RelationManagers\NodesRelationManager;
 | |
| 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 $recordTitleAttribute = 'name';
 | |
| 
 | |
|     public static function getNavigationBadge(): ?string
 | |
|     {
 | |
|         return static::getModel()::count() ?: null;
 | |
|     }
 | |
| 
 | |
|     public static function getRelations(): array
 | |
|     {
 | |
|         return [
 | |
|             NodesRelationManager::class,
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public static function getPages(): array
 | |
|     {
 | |
|         return [
 | |
|             'index' => Pages\ListNodes::route('/'),
 | |
|             'create' => Pages\CreateNode::route('/create'),
 | |
|             'edit' => Pages\EditNode::route('/{record}/edit'),
 | |
|         ];
 | |
|     }
 | |
| }
 | 
