PHPackages                             michaeld555/filament-helpers - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. michaeld555/filament-helpers

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

michaeld555/filament-helpers
============================

A Laravel &amp; Filament helper package that generates well-structured classes for managing forms, tables, relations, and fields in your Filament app.

v1.0.1(9mo ago)015MITPHPPHP ^8.2|^8.3|^8.4

Since Sep 11Pushed 9mo agoCompare

[ Source](https://github.com/michaeld555/filament-helpers)[ Packagist](https://packagist.org/packages/michaeld555/filament-helpers)[ RSS](/packages/michaeld555-filament-helpers/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Filament Helpers
================

[](#filament-helpers)

Gerando uma nova classe
-----------------------

[](#gerando-uma-nova-classe)

```
php artisan filament:helpers
```

> O comando faz **3 perguntas**:
>
> 1. Nome da classe (ex.: `User`)
> 2. Nome do painel (opcional)
> 3. Nome do Resource

> Sempre gera **Form, Table, Actions e Filters**.

---

Estrutura dos arquivos gerados
------------------------------

[](#estrutura-dos-arquivos-gerados)

### Com painel

[](#com-painel)

```
App/Filament/{Panel}/Resources/{Resource}/Forms/{ClassName}Form.php
App/Filament/{Panel}/Resources/{Resource}/Tables/{ClassName}Table.php
App/Filament/{Panel}/Resources/{Resource}/Actions/{ClassName}Actions.php
App/Filament/{Panel}/Resources/{Resource}/Filters/{ClassName}Filters.php

```

### Sem painel

[](#sem-painel)

```
App/Filament/Resources/{Resource}/Forms/{ClassName}Form.php
App/Filament/Resources/{Resource}/Tables/{ClassName}Table.php
App/Filament/Resources/{Resource}/Actions/{ClassName}Actions.php
App/Filament/Resources/{Resource}/Filters/{ClassName}Filters.php

```

---

Exemplos de uso
---------------

[](#exemplos-de-uso)

### Forms

[](#forms)

```
use App\Filament\Panel\Resources\AccountResource\Forms\UserForm; // Com painel
// ou
use App\Filament\Resources\AccountResource\Forms\UserForm; // Sem painel

public function form(Form $form): Form
{
    return UserForm::make($form);
}
```

### Tables

[](#tables)

```
use App\Filament\Panel\Resources\AccountResource\Tables\UserTable; // Com painel
// ou
use App\Filament\Resources\AccountResource\Tables\UserTable; // Sem painel

public function table(Table $table): Table
{
    return UserTable::make($table);
}
```

### Actions

[](#actions)

```
use App\Filament\Panel\Resources\AccountResource\Actions\UserActions; // Com painel
// ou
use App\Filament\Resources\AccountResource\Actions\UserActions; // Sem painel

public function table(Table $table): Table
{
    return $table->actions(UserActions::make());
}
```

### Filters

[](#filters)

```
use App\Filament\Panel\Resources\AccountResource\Filters\UserFilters; // Com painel
// ou
use App\Filament\Resources\AccountResource\Filters\UserFilters; // Sem painel

public function table(Table $table): Table
{
    return $table->filters(UserFilters::make());
}
```

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance56

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

295d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/468ac93c5d3d72f0574d393b2582b56059fcc1cf48f564e63717a685f19d8b50?d=identicon)[michaeld555](/maintainers/michaeld555)

---

Top Contributors

[![michaeld555](https://avatars.githubusercontent.com/u/97418627?v=4)](https://github.com/michaeld555 "michaeld555 (2 commits)")

---

Tags

phplaravelhelperscaffoldinggeneratorfilamentfilamentphpform classtable classrelation classfield class

### Embed Badge

![Health badge](/badges/michaeld555-filament-helpers/health.svg)

```
[![Health](https://phpackages.com/badges/michaeld555-filament-helpers/health.svg)](https://phpackages.com/packages/michaeld555-filament-helpers)
```

###  Alternatives

[tomatophp/filament-helpers

Helper Class Generator to manage your forms and table inside your filament app

128.1k](/packages/tomatophp-filament-helpers)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)[tomatophp/filament-icons

Picker &amp; Table Column &amp; Icons Provider for FilamentPHP

38115.1k13](/packages/tomatophp-filament-icons)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12453.6k](/packages/jibaymcs-filament-tour)[asosick/filament-layout-manager

Allow users to create &amp; customize their own FilamentPHP pages composed of Livewire components

5822.2k3](/packages/asosick-filament-layout-manager)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

30136.4k](/packages/tapp-filament-google-autocomplete-field)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
