PHPackages                             burdziakm/filament-generators - 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. burdziakm/filament-generators

ActiveLibrary

burdziakm/filament-generators
=============================

A collection of Artisan generators providing clean, modular building blocks for Filament applications.

v1.0.1(7mo ago)09MITPHP

Since Sep 19Pushed 7mo agoCompare

[ Source](https://github.com/burdziakm/filament-generators)[ Packagist](https://packagist.org/packages/burdziakm/filament-generators)[ RSS](/packages/burdziakm-filament-generators/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

filament-generators
===================

[](#filament-generators)

A collection of Artisan generators providing clean, modular building blocks for **FilamentPHP** applications.

Forms
-----

[](#forms)

To create a Filament Form class, use the following command:

```
php artisan make:filament-form Model
```

Replace `Model` with the name of your model. For example, if your model is named `Car`:

```
php artisan make:filament-form Car
```

This will generate a new file:

```
Filament Form [app/Filament/Forms/CarForm.php] created successfully.

```

With the following template:

```
