PHPackages                             iammuttaqi/filament-fakester - 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. iammuttaqi/filament-fakester

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

iammuttaqi/filament-fakester
============================

A Filament plugin to generate fake data for your Laravel application.

v0.4.1(2w ago)08[1 PRs](https://github.com/iammuttaqi/filament-fakester/pulls)MITPHPPHP ^8.2CI passing

Since May 21Pushed 1w agoCompare

[ Source](https://github.com/iammuttaqi/filament-fakester)[ Packagist](https://packagist.org/packages/iammuttaqi/filament-fakester)[ Docs](https://github.com/iammuttaqi/filament-fakester)[ GitHub Sponsors](https://github.com/iammuttaqi)[ RSS](/packages/iammuttaqi-filament-fakester/feed)WikiDiscussions 5.x Synced 1w ago

READMEChangelog (2)Dependencies (12)Versions (7)Used By (0)

Filament Fakester
=================

[](#filament-fakester)

[![Latest Version on Packagist](https://camo.githubusercontent.com/0602cd5dd3fa3499fc1ef8e4db5f279761292218dd6fa3a0721d6f594a0cd829/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f69616d6d7574746171692f66696c616d656e742d66616b65737465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/iammuttaqi/filament-fakester)[![GitHub Tests Action Status](https://camo.githubusercontent.com/f9a8d9fad60bfcce34a81ee55d8f7cad8b63fffaf581e0bf5b79efec8500d221/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f69616d6d7574746171692f66696c616d656e742d66616b65737465722f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/iammuttaqi/filament-fakester/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/ffb2502ae305d07dd7dc3c348aa33c1707b61d97bd2344a447f1e926489734c7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f69616d6d7574746171692f66696c616d656e742d66616b65737465722f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/iammuttaqi/filament-fakester/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/c6391e679e7bdf47efc265292bc65b4db053a0f567681c46593f416b78350cf0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f69616d6d7574746171692f66696c616d656e742d66616b65737465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/iammuttaqi/filament-fakester)

Filling out forms in dev is tedious. Filament Fakester sticks a little sparkles button next to every `TextInput`, `Textarea`, `RichEditor`, and `MarkdownEditor` — one click and the field gets sensible fake data. It reads the field name and the input type, so `email` gets an email, `latitude` gets a coordinate, `slug` gets a slug, `phone` gets a phone number, and so on. In production it's gone — nothing renders unless you tell it to.

Install
-------

[](#install)

```
composer require iammuttaqi/filament-fakester --dev
```

That's it. The package self-registers through Laravel's service provider discovery, so the moment a Filament form component renders anywhere in your app — inside a panel, inside a standalone Livewire form, doesn't matter — the hint button is there. No plugin to wire into a panel, no service provider edits.

Want to publish the config?

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

```
return [
    'enabled' => env('FAKESTER_ENABLED', ! app()->isProduction()),
];
```

Hidden in production by default. Force it on or off with `FAKESTER_ENABLED` in your env.

What it figures out for you
---------------------------

[](#what-it-figures-out-for-you)

The resolver looks at the field's name and HTML type and picks something that fits. A non-exhaustive taste:

Field name / typeWhat you get`email` (or `type="email"`)`jane.doe@example.com``phone`, `mobile`, `tel``+1-555-…``latitude` / `longitude`valid coordinates`slug``kebab-case-words``url`, `website`, `facebook`, `google_map`a plausible URL`password`a random secret`name`, `first_name`, `last_name`, `company`, `city`, …what you'd expectanything elsea short faker sentence`Textarea`, `RichEditor`, `MarkdownEditor` get longer paragraphs — HTML blocks for rich editors, plain markdown for the markdown one.

Teaching it your own fields
---------------------------

[](#teaching-it-your-own-fields)

Got an `invoice_number` or `order_ref` that needs a specific shape? Register a matcher anywhere in your app boot (e.g. `AppServiceProvider::boot`):

```
app(\Iammuttaqi\FilamentFakester\Support\MatcherRegistry::class)
    ->register(fn (string $name, ?string $type) =>
        $name === 'invoice_number' ? 'INV-' . fake()->numerify('######') : null
    );
```

Return a value to override the default, return `null` to fall through to the built-in resolver. Matchers run before the built-ins, so yours always win.

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](.github/SECURITY.md) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Muttaqi](https://github.com/iammuttaqi)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance97

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

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

6

Last Release

16d ago

Major Versions

0.4 → 5.x-dev2026-05-24

### Community

Maintainers

![](https://www.gravatar.com/avatar/b84b807d335e15b720bb985c5e8750b87e8dec934d4210ca138cdace0080c24e?d=identicon)[iammuttaqi](/maintainers/iammuttaqi)

---

Top Contributors

[![iammuttaqi](https://avatars.githubusercontent.com/u/44245907?v=4)](https://github.com/iammuttaqi "iammuttaqi (17 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

laravelfilamentfilament-pluginfilamentphpiammuttaqifilament-fakester

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/iammuttaqi-filament-fakester/health.svg)

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

###  Alternatives

[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

327482.0k25](/packages/codewithdennis-filament-select-tree)[jaocero/radio-deck

Turn filament default radio button into a selectable card with icons, title and description.

83328.6k7](/packages/jaocero-radio-deck)[awcodes/richer-editor

A collection of extensions and tools to enhance the Filament Rich Editor field.

379.0k8](/packages/awcodes-richer-editor)[rawilk/filament-password-input

Enhanced password input component for filament.

52250.4k10](/packages/rawilk-filament-password-input)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

34208.8k10](/packages/schmeits-filament-character-counter)[biostate/filament-menu-builder

An Elegant Menu Builder for FilamentPHP

6422.4k](/packages/biostate-filament-menu-builder)

PHPackages © 2026

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