PHPackages                             grafton-digital/laravel-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. grafton-digital/laravel-filament-starter-kit

ActiveProject[Framework](/categories/framework)

grafton-digital/laravel-filament-starter-kit
============================================

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

1.0.0(yesterday)06↑2400%MITPHPPHP ^8.3

Since Jun 8Pushed yesterdayCompare

[ Source](https://github.com/Grafton-Digital/laravel-filament-starter-kit)[ Packagist](https://packagist.org/packages/grafton-digital/laravel-filament-starter-kit)[ RSS](/packages/grafton-digital-laravel-filament-starter-kit/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependencies (21)Versions (2)Used By (0)

🚀 Glow Starter Kit
==================

[](#-glow-starter-kit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a005fcb3f8acbf247b8de9e7abb05bd40d8defa75c0300740ba624ee731c711c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6572636f67782f6c61726176656c2d66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ercogx/laravel-filament-starter-kit)[![Total Downloads](https://camo.githubusercontent.com/7fb03f7241f4ceab2693d7d12db0f6ea904281e850bef48f3fbeaccc92c09a24/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6572636f67782f6c61726176656c2d66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ercogx/laravel-filament-starter-kit)[![Stars](https://camo.githubusercontent.com/3593357faf55b2c9a42958723a18da6ecbb88b3df851fe2313fb3f70cb4ca40f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f73746172732f6572636f67782f6c61726176656c2d66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ercogx/laravel-filament-starter-kit)

This is a **Filament v5 Starter Kit** for **Laravel 13**, designed to accelerate the development of Filament-powered applications.

Preview: [![](https://raw.githubusercontent.com/ercogx/laravel-filament-starter-kit/main/preview-white.png)](https://raw.githubusercontent.com/ercogx/laravel-filament-starter-kit/main/preview-white.png)Dark Mode: [![](https://raw.githubusercontent.com/ercogx/laravel-filament-starter-kit/main/preview.png)](https://raw.githubusercontent.com/ercogx/laravel-filament-starter-kit/main/preview.png)

Compatibility
-------------

[](#compatibility)

Starter KitFilament Version[1.x](https://github.com/Ercogx/laravel-filament-starter-kit/tree/1.x)[3.x](https://github.com/filamentphp/filament/tree/3.x)[2.x](https://github.com/Ercogx/laravel-filament-starter-kit/tree/2.x)[4.x](https://github.com/filamentphp/filament/tree/4.x)**3.x****5.x**📦 Installation
--------------

[](#-installation)

You need the Laravel Installer if it is not yet installed.

```
composer global require laravel/installer
```

Now you can create a new project using the Laravel Filament Starter Kit.

```
laravel new test-kit --using=ercogx/laravel-filament-starter-kit
```

> If you want a Filament v3 (not recommended) `laravel new test-kit --using=ercogx/laravel-filament-starter-kit:1.8.0`

> If you want a Filament v4 `laravel new test-kit --using=ercogx/laravel-filament-starter-kit:2.12.0`

⚙️ Setup
--------

[](#️-setup)

1️⃣ **Database Configuration**

By default, this starter kit uses **SQLite**. If you’re okay with this, you can skip this step. If you prefer **MySQL**, follow these steps:

- Update your database credentials in `.env`
- Run migrations: `php artisan migrate`
- (Optional) delete the existing database file: `rm database/database.sqlite`

2️⃣ Create Filament Admin User

```
php artisan make:filament-user
```

3️⃣ Assign Super Admin Role

```
php artisan shield:super-admin --user=1 --panel=admin
```

4️⃣ Generate Permissions

```
php artisan shield:generate --all --ignore-existing-policies --panel=admin
```

🌟Panel Include
--------------

[](#panel-include)

- [Shield](https://filamentphp.com/plugins/bezhansalleh-shield) Access management to your Filament Panel's Resources, Pages &amp; Widgets through spatie/laravel-permission.
- [Backgrounds](https://filamentphp.com/plugins/swisnl-backgrounds) Beautiful backgrounds for Filament auth pages.
- [Logger](https://filamentphp.com/plugins/jacobtims-logger) Extensible activity logger for filament that works out-of-the-box.
- [Theme Edinburgh](https://filamentphp.com/plugins/spykapp-theme-edinburgh) Beautiful theme with warm palette.
- [Breezy](https://filamentphp.com/plugins/jeffgreco-breezy) My Profile page.
- [DB Config](https://filamentphp.com/plugins/inerba-db-config) Settings page.
- [Quick Create](https://filamentphp.com/plugins/awcodes-quick-create) Topbar item for quick resource creation.

🧑‍💻Development Include
----------------------

[](#‍development-include)

- [barryvdh/laravel-debugbar](https://github.com/barryvdh/laravel-debugbar) The most popular debugging tool for Laravel, providing detailed request and query insights.
- [larastan/larastan](https://github.com/larastan/larastan) A PHPStan extension for Laravel, configured at level 5 for robust static code analysis.
- [plannr/laravel-fast-refresh-database](https://github.com/PlannrCrm/laravel-fast-refresh-database) 🚀 Refresh your test databases faster than you've ever seen before.

The `composer check` script runs **tests, PHPStan, and Pint** for code quality assurance:

```
composer check
```

📜 License
---------

[](#-license)

This project is open-source and licensed under the MIT License.

💡 Contributing
--------------

[](#-contributing)

We welcome contributions! Feel free to open issues, submit PRs, or suggest improvements.

### 🚀 Happy Coding with Laravel &amp; Filament! 🎉

[](#-happy-coding-with-laravel--filament-)

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance100

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

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

1d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/95250001?v=4)[Grafton Digital LTD.](/maintainers/Grafton-Digital)[@Grafton-Digital](https://github.com/Grafton-Digital)

---

Top Contributors

[![Ercogx](https://avatars.githubusercontent.com/u/22002063?v=4)](https://github.com/Ercogx "Ercogx (140 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (69 commits)")

---

Tags

frameworklaravellivewirefilamentglow starter kit

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[ercogx/laravel-filament-starter-kit

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

441.7k](/packages/ercogx-laravel-filament-starter-kit)[raugadh/fila-starter

Laravel Filament Starter.

625.1k](/packages/raugadh-fila-starter)[unopim/unopim

UnoPim Laravel PIM

10.1k2.2k](/packages/unopim-unopim)[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.

3861.7k](/packages/codewithdennis-larament)[a2insights/filament-saas

Filament Saas for A2Insights

171.5k](/packages/a2insights-filament-saas)

PHPackages © 2026

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