PHPackages                             tapp/filament-starter-kit - 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. [Framework](/categories/framework)
4. /
5. tapp/filament-starter-kit

ActiveProject[Framework](/categories/framework)

tapp/filament-starter-kit
=========================

The Tapp Filament Starter Kit.

v1.0.0(1y ago)07[11 PRs](https://github.com/TappNetwork/filament-starter-kit/pulls)MITPHPPHP ^8.2CI passing

Since Apr 29Pushed 2mo ago4 watchersCompare

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

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

  ![Tapp Filament Starter Kit Light Logo](https://raw.githubusercontent.com/TappNetwork/filament-starter-kit/main/art/logo_light.png)Tapp Filament Starter Kit
=========================

[](#tapp-filament-starter-kit)

Key features include:

- Pre-configured User architecture (Model, Policy, Factory, Migration, and Seeder)
- Authorization using Spatie Permission library (roles and permissions)

**For Filament**

- Admin panel with a custom theme initialized

What is included
----------------

[](#what-is-included)

- Filament 3
- Laravel 12
- Livewire 3
- TailwindCSS 4
- AlpineJS
- [Spatie Permission](https://github.com/spatie/laravel-permission)
- [Spatie Media Library](https://github.com/spatie/laravel-medialibrary)

### Filament plugins

[](#filament-plugins)

- [Filament Spatie Media Library](https://github.com/filamentphp/spatie-laravel-media-library-plugin)

### Dev

[](#dev)

- [Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar)
- Pest
- Peck
- Larastan
- Cursor rules

Global Laravel Configurations included
--------------------------------------

[](#global-laravel-configurations-included)

### For local

[](#for-local)

- [`Model::shouldBeStrict();`](https://laravel-news.com/shouldbestrict):
    - Prevent lazy loading
    - Prevent silently discarding attributes
    - Prevent accessing missing attributes

### For production

[](#for-production)

- Force HTTPs (`URL::forceHttps(app()->isProduction())`)
- Prohibit destructive database commands (`DB::prohibitDestructiveCommands(app()->isProduction())`)

### Seeder

[](#seeder)

- Permission and role seeders
- User seeder

Quick Start
-----------

[](#quick-start)

```
composer create-project tapp/filament-starter-kit
```

Install dependencies

```
composer install

npm install
npm run build
```

Setup environment

```
cp .env.example .env

# in the newly created .env file, configure your database:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE="filament_starter"
DB_USERNAME=root
DB_PASSWORD=

# Testing
DB_TEST_CONNECTION="mysql-test"
DB_TEST_HOST=127.0.0.1
DB_TEST_PORT=3306
DB_TEST_DATABASE="filament_starter_test"
DB_TEST_USERNAME=root
DB_TEST_PASSWORD=
```

Run database migrations

```
php artisan migrate --seed
```

This will create an admin user:

```
user: admin@dev.com
password: secret

```

and also an "Administrator" role and user permissions.

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

[](#contributing)

Thank you for considering contributing to the Tapp Filament Starter Kit!

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

[](#security-vulnerabilities)

If you discover a security vulnerability, please send an e-mail to Steve Williamson via . All security vulnerabilities will be promptly addressed.

License
-------

[](#license)

The Tapp Filament Starter Kit software is licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

38

—

LowBetter than 84% of packages

Maintenance74

Regular maintenance activity

Popularity4

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity56

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

Unknown

Total

1

Last Release

375d ago

### Community

Maintainers

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

![](https://www.gravatar.com/avatar/4c469e4e441a135287b2154a0a39f543893cbe1e2c3ab066e3e7c66a974a39e2?d=identicon)[scottgrayson](/maintainers/scottgrayson)

![](https://www.gravatar.com/avatar/5d0402fb770bca016dd6ee6a925501e0224783f1e5907788aee0ba7bc31c01ee?d=identicon)[andreiabohner](/maintainers/andreiabohner)

![](https://www.gravatar.com/avatar/5ac72d31fcf96191b82f452d6df6990219c5ffdfd7673859d3fa46cf1dd6193b?d=identicon)[johnwesely](/maintainers/johnwesely)

![](https://www.gravatar.com/avatar/098c516353ec886f976c4079004fac2502b619b37889deff70fe33abb1d30209?d=identicon)[swilla](/maintainers/swilla)

---

Top Contributors

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

---

Tags

frameworklaravellivewirefilamentstarter-kit

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tapp-filament-starter-kit/health.svg)

```
[![Health](https://phpackages.com/badges/tapp-filament-starter-kit/health.svg)](https://phpackages.com/packages/tapp-filament-starter-kit)
```

###  Alternatives

[raugadh/fila-starter

Laravel Filament Starter.

614.9k](/packages/raugadh-fila-starter)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v3 Starter Kit for Laravel 12, designed to accelerate the development of Filament-powered applications.

401.5k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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