PHPackages                             muazzam/filament-pro-starter - 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. [Admin Panels](/categories/admin)
4. /
5. muazzam/filament-pro-starter

ActiveProject[Admin Panels](/categories/admin)

muazzam/filament-pro-starter
============================

A professional Laravel + Filament starter kit with Shield, 2FA, Passkeys, and pre-configured admin setup.

v1.0.0(6mo ago)626MITPHPPHP ^8.2

Since Oct 19Pushed 6mo agoCompare

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

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

🧩 Filament Pro Starter
======================

[](#-filament-pro-starter)

A **professional Laravel + Filament starter kit** preconfigured with authentication, roles, permissions, and modern developer tooling — so you can start building admin panels in minutes instead of hours.

[![Laravel Version](https://camo.githubusercontent.com/e2ab74c900c407c3d7b80cd3689bb5c8f2767230a906c7b2c1e6f0ff8da66157/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31322e782d7265643f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/e2ab74c900c407c3d7b80cd3689bb5c8f2767230a906c7b2c1e6f0ff8da66157/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31322e782d7265643f7374796c653d666c61742d737175617265)[![Filament Version](https://camo.githubusercontent.com/08e33a79d79e825551c7d43c6440992a3d1178213a3399f8fbbc85f259b14fa9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f46696c616d656e742d342e782d626c756576696f6c65743f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/08e33a79d79e825551c7d43c6440992a3d1178213a3399f8fbbc85f259b14fa9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f46696c616d656e742d342e782d626c756576696f6c65743f7374796c653d666c61742d737175617265)[![License: MIT](https://camo.githubusercontent.com/458425f8985b0b0c8a736cffe75e05a098e3d77906acddbcad2bfc54492a4e02/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/458425f8985b0b0c8a736cffe75e05a098e3d77906acddbcad2bfc54492a4e02/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e7376673f7374796c653d666c61742d737175617265)[![Status](https://camo.githubusercontent.com/ab5bccc65fd0dfc759cb04ffe3446775f8674a09e936f473d7a51abcd3e02713/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5374617475732d4163746976652d737563636573733f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/ab5bccc65fd0dfc759cb04ffe3446775f8674a09e936f473d7a51abcd3e02713/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5374617475732d4163746976652d737563636573733f7374796c653d666c61742d737175617265)

---

🚀 Quick Start
-------------

[](#-quick-start)

```
composer create-project muazzam/filament-pro-starter myapp
cd myapp
php artisan key:generate
php artisan migrate
npm install && npm run dev
php artisan serve
```

Visit your new app at 👉 ****

---

⚙️ Preconfigured Packages
-------------------------

[](#️-preconfigured-packages)

PackageDescription**[filament/filament](https://filamentphp.com/)**Core Filament admin panel**[bezhansalleh/filament-shield](https://github.com/bezhanSalleh/filament-shield)**Roles &amp; permissions made simple**[stechstudio/filament-impersonate](https://github.com/stechstudio/filament-impersonate)**Login as any user**[joaopaulolndev/filament-edit-profile](https://github.com/joaopaulolndev/filament-edit-profile)**Editable user profile in Filament**[stephenjude/filament-two-factor-authentication](https://github.com/stephenjude/filament-two-factor-authentication)**Secure 2FA integration**[spatie/laravel-passkeys](https://github.com/spatie/laravel-passkeys)**WebAuthn passkey authenticationAll configured and ready to go out of the box 🧙‍♂️

---

🧠 Key Features
--------------

[](#-key-features)

✅ **Laravel 12 + Filament 4.1**
✅ **Role &amp; Permission System (Shield)**
✅ **Two-Factor Authentication (2FA)**
✅ **Passkey Authentication Support**
✅ **User Impersonation**
✅ **Edit Profile Page**
✅ **Preconfigured Build System** (Vite + Tailwind)
✅ **Dev Script for Instant Startup**

---

🧰 Available Commands
--------------------

[](#-available-commands)

CommandPurpose`composer setup`Runs install, migrations, and npm build automatically`composer dev`Starts Laravel, Vite, and queue listener concurrently`composer test`Runs all tests`php artisan migrate`Migrates database`php artisan serve`Starts the local server---

🧪 Development Workflow
----------------------

[](#-development-workflow)

You can use the included concurrent dev script for a full local environment:

```
composer dev
```

This will run:

- 🟢 Laravel server (`php artisan serve`)
- 🟡 Queue listener
- 🔵 Vite build (hot reload)

Perfect for rapid Filament development.

---

🧩 Project Structure
-------------------

[](#-project-structure)

```
.
├── app/
│   ├── Filament/        # Your Filament Resources
│   ├── Http/
│   └── Models/
├── database/
│   ├── migrations/
│   └── seeders/
├── public/
├── resources/
│   ├── views/
│   ├── css/
│   └── js/
├── routes/
│   ├── web.php
│   └── api.php
└── composer.json

```

---

🛠️ Requirements
---------------

[](#️-requirements)

- **PHP ≥ 8.2**
- **Composer ≥ 2.6**
- **Node.js ≥ 18**
- **MySQL or SQLite**

---

📦 Deployment Ready
------------------

[](#-deployment-ready)

This starter includes:

- 🧾 **Optimized autoloading**
- ⚙️ **Production build scripts**
- 🔑 **Security best practices**
- 🐳 **Laravel Sail support** (Docker ready)

---

🪄 Example Setup Script
----------------------

[](#-example-setup-script)

🪄 Example Setup Script (with Filament Shield)

After running your migrations, simply execute:

Run this to generate permissions and policies

```
php artisan shield:generate --all
```

Then generate a super user

```
php artisan shield:super-admin
```

You’ll be guided through a short setup:

Enter the name, email, and password for your super admin.

Shield will automatically:

Create the Super Admin role

Assign all permissions

Link the new user to that role

When done, you can log in at /admin using those credentials 🎉

Then visit `/admin` and log in 🎉

---

🧰 Optional Tools
----------------

[](#-optional-tools)

If you’d like to extend this starter:

PackageAdds`spatie/laravel-activitylog`User activity tracking`filament/forms` + `filament/tables`Advanced Filament components`livewire/livewire`Reactive UI support---

🤝 Contributing
--------------

[](#-contributing)

Pull requests are welcome!
If you plan major changes, please open an issue first to discuss what you’d like to add.

---

📄 License
---------

[](#-license)

This project is open-sourced software licensed under the **[MIT license](LICENSE)**.

---

✨ Credits
---------

[](#-credits)

Built with ❤️ by [Muazzam Khan](https://github.com/Muazzamkhan95)
Powered by [Laravel](https://laravel.com) + [Filament](https://filamentphp.com)

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance66

Regular maintenance activity

Popularity13

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

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

206d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9efe4d77f8d8d835b700ee66ac8ce05f106e33f5027def2a7cbb87912587f9d1?d=identicon)[Muazzamkhan95](/maintainers/Muazzamkhan95)

---

Top Contributors

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

---

Tags

laravelboilerplateadminstarterfilamentshield

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/muazzam-filament-pro-starter/health.svg)

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

###  Alternatives

[raugadh/fila-starter

Laravel Filament Starter.

614.9k](/packages/raugadh-fila-starter)[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)[craft-forge/filament-language-switcher

Zero-config language switcher for Filament admin panels. Automatically scans available translations, renders dropdown with country flags, persists selection via sessions.

1016.4k](/packages/craft-forge-filament-language-switcher)[a2insights/filament-saas

Filament Saas for A2Insights

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

PHPackages © 2026

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