细丝PHP的提示和注释
#php #tips #backend #filament

创建资源

资源(资源)是将用于创建形式,表和关系的元素的定义。除了应用程序和接口的其他元素

之外

从工匠创建资源

php artisan make:filament-resource Blog --generate --view

创建以下元素。
app/Filament/Resources/BlogResource.php
Una carpeta BlogResource y dentro
└── Pages
├── CreateBlog.php
├── EditBlog.php
├── ListBlogs.php
└── ViewBlog.php

每个pãgin均在mãtodoblogling :: getEtpages()

中调用和定义

资源配置

我们可以添加的一些变量来定义我们要使用的模型的元素和事物(在bloggresource.php中)

class BlogResource extends Resource
{
    //modelo
    protected static ?string $model = Blog::class;
    // icono que aparece en el menú sidebar
    protected static ?string $navigationIcon = 'heroicon-o-newspaper';
    //para el título del listado de registros
    protected static ?string $pluralLabel = 'noticias';
    // podemos agrupar los distintos resources en el menú
    protected static ?string $navigationGroup = 'Tablas';
    // para los mensajes del sistema (crear biblioteca por ej.)
    protected static ?string $label = 'noticia';

列表或表定义


public static function table(Table $table): Table
    {
        return $table
        ->columns([
            Tables\Columns\TextColumn::make('user_id')->label('#')->sortable(),
            Tables\Columns\TextColumn::make('title')->label('Título')->sortable()->searchable(),         

            Tables\Columns\TextColumn::make('abstract'),
            //Tables\Columns\TextColumn::make('content'),
            Tables\Columns\IconColumn::make('active')
            ->boolean()

                    ])
                    ->filters([
                        // Filtro usando el campo active
                Filter::make('is_active')->label('activo')
                   ->query(fn (Builder $query): Builder =>                           
                       $query->where('active', true))
            ])
                        ])
                        ->actions([
                            Tables\Actions\ViewAction::make(),
                            Tables\Actions\EditAction::make(),
                            ])
                            ->bulkActions([
                                Tables\Actions    
                                 \DeleteBulkAction::make(),
                            ]);
                        }

                   public static function getRelations(): array
                        {
                            return [
                                //
                            ];
                        }

                        public static function getPages(): array
                        {
                            return [
            'index' => Pages\ListBlogs::route('/'),
            'create' => Pages\CreateBlog::route('/create'),
            'view' => Pages\ViewBlog::route('/{record}'),
            'edit' => Pages\EditBlog::route('/{record}/edit'),
        ];
    }    

这种方式是新闻列表和配置的横向Menad

Image description