mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00
38 lines
934 B
PHP
38 lines
934 B
PHP
<?php
|
|
|
|
namespace App\Filament\Admin\Resources;
|
|
|
|
use App\Filament\Admin\Resources\EggResource\Pages;
|
|
use App\Models\Egg;
|
|
use Filament\Resources\Resource;
|
|
|
|
class EggResource extends Resource
|
|
{
|
|
protected static ?string $model = Egg::class;
|
|
|
|
protected static ?string $navigationIcon = 'tabler-eggs';
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
protected static ?string $recordRouteKeyName = 'id';
|
|
|
|
public static function getNavigationBadge(): ?string
|
|
{
|
|
return static::getModel()::count() ?: null;
|
|
}
|
|
|
|
public static function getGloballySearchableAttributes(): array
|
|
{
|
|
return ['name', 'tags', 'uuid', 'id'];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListEggs::route('/'),
|
|
'create' => Pages\CreateEgg::route('/create'),
|
|
'edit' => Pages\EditEgg::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|