PHPackages                             afsakar/filament-form-maker - 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. afsakar/filament-form-maker

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

afsakar/filament-form-maker
===========================

Form Maker for FilamentPHP

v0.1(1y ago)41[4 PRs](https://github.com/afsakar/filament-form-maker/pulls)MITPHPPHP ^8.1CI passing

Since Oct 7Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/afsakar/filament-form-maker)[ Packagist](https://packagist.org/packages/afsakar/filament-form-maker)[ Docs](https://github.com/afsakar/filament-form-maker)[ GitHub Sponsors](https://github.com/afsakar)[ RSS](/packages/afsakar-filament-form-maker/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (16)Versions (6)Used By (0)

Form Maker plugin for FilamentPHP
=================================

[](#form-maker-plugin-for-filamentphp)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4691fb9540a36a0a183ac1fbb511907f57e45d46ad08efe583bc78d014fc10d6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616673616b61722f66696c616d656e742d666f726d2d6d616b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/afsakar/filament-form-maker)[![GitHub Tests Action Status](https://camo.githubusercontent.com/6b55f995120613a412e4d942fa4cf3867bd69d55e6372fed0e1f59c9ed5b145c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f616673616b61722f66696c616d656e742d666f726d2d6d616b65722f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/afsakar/filament-form-maker/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/1a6dde852d148bfdc59db278a25b9a883f4d8407247989b50241d07c97ce3393/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f616673616b61722f66696c616d656e742d666f726d2d6d616b65722f6669782d7068702d636f64652d7374796c696e672e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/afsakar/filament-form-maker/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/84202e5fe8798b097da79994ba2227de000e6c6742f5808bf92345f0db0c48ee/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616673616b61722f66696c616d656e742d666f726d2d6d616b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/afsakar/filament-form-maker)

[![Screenshot](https://camo.githubusercontent.com/8be1edbcb24427d458bf073da8818fda7047777b7d3b9068ab3188430dd3e101/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230466f726d2532304d616b65722e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d616673616b617225324666696c616d656e742d666f726d2d6d616b6572267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d466f726d2b4d616b65722b706c7567696e2b666f722b46696c616d656e74504850266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d74656d706c617465)](https://camo.githubusercontent.com/8be1edbcb24427d458bf073da8818fda7047777b7d3b9068ab3188430dd3e101/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f46696c616d656e74253230466f726d2532304d616b65722e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d616673616b617225324666696c616d656e742d666f726d2d6d616b6572267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d466f726d2b4d616b65722b706c7567696e2b666f722b46696c616d656e74504850266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d74656d706c617465)

Form Maker plugin for FilamentPHP, which allows you to create and manage forms easily.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require afsakar/filament-form-maker
```

Form Maker uses Spatie Media Library package. If you haven't published the media table yet, you can publish it with:

```
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="medialibrary-migrations"
```

If you haven't published the notifications table yet, you can publish it with:

```
php artisan notifications:table
```

Then finally you need to publish main tables and run the migrations with:

```
php artisan vendor:publish --tag="filament-form-maker-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-form-maker-config"
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="filament-form-maker-views"
```

This is the contents of the published config file:

```
return [
    'extra_collections' => [
        //  App\Models\User::class => 'User List',
    ],

    // TODO: Add extra fields feature
    'extra_fields' => [
        // 'field_name' => Field::class
    ],
];
```

Usage
-----

[](#usage)

```
// Usage
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Azad Furkan ŞAKAR](https://github.com/afsakar)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance66

Regular maintenance activity

Popularity5

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65.6% 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

Unknown

Total

1

Last Release

580d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1b40b7f308602075b99b5a258335ae711560c528f387f2abbb13f7a6e38a9a98?d=identicon)[afsakar](/maintainers/afsakar)

---

Top Contributors

[![afsakar](https://avatars.githubusercontent.com/u/75483091?v=4)](https://github.com/afsakar "afsakar (21 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (6 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (5 commits)")

---

Tags

filament-pluginfilamentphpform-builderlaravellaravel-packagelaravelafsakarfilament-form-maker

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/afsakar-filament-form-maker/health.svg)

```
[![Health](https://phpackages.com/badges/afsakar-filament-form-maker/health.svg)](https://phpackages.com/packages/afsakar-filament-form-maker)
```

###  Alternatives

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[jibaymcs/filament-tour

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

12247.8k](/packages/jibaymcs-filament-tour)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[outerweb/filament-settings

Filament integration for the outerweb/settings package

3690.9k4](/packages/outerweb-filament-settings)

PHPackages © 2026

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