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

ActiveProject[Admin Panels](/categories/admin)

ckn01/superduper-filament-starter-kit
=====================================

A Filament💡 starting point to kickstart your next app. With Custom Theme, Mail Configuration, Filament Shield, Filament Exception, etc..

v1.0.6(1y ago)0151MITPHPPHP ^8.2

Since Aug 2Pushed 1y agoCompare

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

READMEChangelog (7)Dependencies (23)Versions (9)Used By (0)

add stability

 [![Starter kit logo](https://camo.githubusercontent.com/c0e1d987e45ed828eed964b3d99246a372372ff4517d17a206b24459e84f0620/68747470733a2f2f692e706f7374696d672e63632f34646a72634a58782f6c6f676f2e706e67)](https://camo.githubusercontent.com/c0e1d987e45ed828eed964b3d99246a372372ff4517d17a206b24459e84f0620/68747470733a2f2f692e706f7374696d672e63632f34646a72634a58782f6c6f676f2e706e67)[![Latest Version on Packagist](https://camo.githubusercontent.com/799aecfcd9b2b4a7376510ff21fe27fc148d6436502cd5ed4173c31a1543adeb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72696f6477616e746f2f737570657264757065722d66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/riodwanto/superduper-filament-starter-kit)[![Laravel](https://github.com/riodwanto/superduper-filament-starter-kit/actions/workflows/laravel.yml/badge.svg)](https://github.com/riodwanto/superduper-filament-starter-kit/actions/workflows/laravel.yml)[![Total Downloads](https://camo.githubusercontent.com/6328cd8ed221dd3daef85eb69f725f0a5264b4f76e3d19c0c0bdfb918da4eee1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72696f6477616e746f2f737570657264757065722d66696c616d656e742d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/riodwanto/superduper-filament-starter-kit)

 A starting point to create your next Filament 3 💡 app. With pre-installed plugins, pre-configured, and custom page. So you don't start all over again.

#### Features

[](#features)

- 🛡 [Filament Shield](#plugins-used) for managing role access
- 👨🏻‍🦱 customizable profile page from [Filament Breezy](#plugins-used)
- 🌌 Managable media with [Filament Spatie Media](#plugins-used)
- 🖼 Theme settings for changing panel color
- 💌 Setting mail on the fly in Mail settings
- 🅻 Lang Generator
- Etc..

#### Latest update

[](#latest-update)

###### Version: v1.14.xx

[](#version-v114xx)

- New UserResource UI form
- Add avatar to user add &amp; edit
- New Theme settings UI
- Bugs fix &amp; Improvement
- Forgot Password
- User Verification
- Etc

[Version Releases](https://github.com/riodwanto/superduper-filament-starter-kit/releases)

###### Upcoming:

[](#upcoming)

- Filament Multi Tenancy 🔥
- Add opcodesio/log-viewer for general log viewer
- Member Module
- Some Improvement
- ...

*Sadly, Filament Multi-Tenancy will not be included in this starter kit. This repository will focus on improvements for non-multi-tenants, since many rooms should be improved.***But, I'll release on different repo for Multi Tenancy usecase.** ☕️

[![Buy Me A Coffee](https://camo.githubusercontent.com/9f44ce2dc3b3eecdd02598900866ffc518801df1932849703dae1e5ce5031070/68747470733a2f2f7777772e6275796d6561636f666665652e636f6d2f6173736574732f696d672f637573746f6d5f696d616765732f6f72616e67655f696d672e706e67)](https://buymeacoffee.com/riodewanto)

#### Getting Started

[](#getting-started)

Create project with this composer command:

```
composer create-project riodwanto/superduper-filament-starter-kit
```

Setup your env:

```
cd superduper-filament-starter-kit
cp .env.example .env
```

Run migration &amp; seeder:

```
php artisan migrate
php artisan db:seed
```

or

```
php artisan migrate:fresh --seed
```

Generate key:

```
php artisan key:generate
```

Run :

```
npm run dev
OR
npm run build
```

```
php artisan serve
```

Now you can access with `/admin` path, using:

```
email: superadmin@starter-kit.com
password: superadmin
```

*It's recommend to run below command as suggested in [Filament Documentation](https://filamentphp.com/docs/3.x/panels/installation#improving-filament-panel-performance) for improving panel perfomance.*

```
php artisan icons:cache
```

#### Language Generator

[](#language-generator)

This project include lang generator.

```
php artisan superduper:lang-translate [from] [to]

```

Generator will look up files inside folder `[from]`. Get all variables inside the file; create a file and translate using `translate.googleapis.com`.

This is what the translation process looks like.

```
❯ php artisan superduper:lang-translate en fr es

 🔔 Translate to 'fr'
 3/3 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100% -- ✅

 🔔 Translate to 'es'
 1/3 [▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░]  33% -- 🔄 Processing: page.php

```

###### Usage example

[](#usage-example)

- Single output

```
php artisan superduper:lang-translate en fr

```

- Multiple output

```
php artisan superduper:lang-translate en es ar fr pt-PT pt-BR zh-CN zh-TW

```

###### If you are using json translation

[](#if-you-are-using-json-translation)

```
php artisan superduper:lang-translate en fr --json

```

test

#### Plugins

[](#plugins)

These are [Filament Plugins](https://filamentphp.com/plugins) use for this project.

**Plugin****Author**[Filament Spatie Media Library](https://github.com/filamentphp/spatie-laravel-media-library-plugin)[Filament Official](https://github.com/filamentphp)[Filament Spatie Settings](https://github.com/filamentphp/spatie-laravel-settings-plugin)[Filament Official](https://github.com/filamentphp)[Filament Spatie Tags](https://github.com/filamentphp/spatie-laravel-tags-plugin)[Filament Official](https://github.com/filamentphp)[Shield](https://github.com/bezhanSalleh/filament-shield)[bezhansalleh](https://github.com/bezhansalleh)[Exceptions](https://github.com/bezhansalleh/filament-exceptions)[bezhansalleh](https://github.com/bezhansalleh)[Breezy](https://github.com/jeffgreco13/filament-breezy)[jeffgreco13](https://github.com/jeffgreco13)[Logger](https://github.com/z3d0x/filament-logger)[z3d0x](https://github.com/z3d0x)[Ace Code Editor](https://github.com/riodwanto/filament-ace-editor)[riodwanto](https://github.com/riodwanto)#### Plugins Recommendation

[](#plugins-recommendation)

Other recommendations for your starter, in my personal opinion:

- [Rupadana - API Resources](https://filamentphp.com/plugins/rupadana-api-service) : Generate API for your Resources.
- [Bezhan Salleh - Language Switch](https://filamentphp.com/plugins/bezhansalleh-language-switch) : Zero config Language Switcher plugin for Filament Panels.
- [Kenepa - Resource Lock](https://filamentphp.com/plugins/kenepa-resource-lock) : Resource locking when other user begins editing a resource.
- [Baptiste Bouillot - Jobs monitor](https://filamentphp.com/plugins/croustibat-jobs-monitor) : Monitor background jobs.
- [Ralph J. Smit - Components](https://filamentphp.com/plugins/ralphjsmit-components) : A collection of handy components.
- [Tapp Network - Laravel Auditing](https://filamentphp.com/plugins/tapp-network-laravel-auditing) : Resource locking when other user begins editing a resource.
- [Shuvro Roy - Spatie Laravel Health](https://filamentphp.com/plugins/shuvroroy-spatie-laravel-health) : Health monitoring for Filament.

[![Buy Me A Coffee](https://camo.githubusercontent.com/9f44ce2dc3b3eecdd02598900866ffc518801df1932849703dae1e5ce5031070/68747470733a2f2f7777772e6275796d6561636f666665652e636f6d2f6173736574732f696d672f637573746f6d5f696d616765732f6f72616e67655f696d672e706e67)](https://buymeacoffee.com/riodewanto)

### License

[](#license)

Filament Starter is provided under the [MIT License](LICENSE.md).

If you discover a bug, please [open an issue](https://github.com/riodwanto/superduper-filament-starter-kit/issues).

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 74.7% 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 ~1 days

Total

7

Last Release

644d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2cf751a607ecb0ecb219cc2e323abc5e8a20f699dc655f7e043a6dc5b20abdf9?d=identicon)[ckn01](/maintainers/ckn01)

---

Top Contributors

[![riodwanto](https://avatars.githubusercontent.com/u/5293897?v=4)](https://github.com/riodwanto "riodwanto (62 commits)")[![kwindian](https://avatars.githubusercontent.com/u/165899013?v=4)](https://github.com/kwindian "kwindian (10 commits)")[![ckn01](https://avatars.githubusercontent.com/u/39361156?v=4)](https://github.com/ckn01 "ckn01 (5 commits)")[![rdptech](https://avatars.githubusercontent.com/u/118041638?v=4)](https://github.com/rdptech "rdptech (4 commits)")[![abdelhamiderrahmouni](https://avatars.githubusercontent.com/u/26693672?v=4)](https://github.com/abdelhamiderrahmouni "abdelhamiderrahmouni (1 commits)")[![radenadri](https://avatars.githubusercontent.com/u/21336206?v=4)](https://github.com/radenadri "radenadri (1 commits)")

---

Tags

laravelfilamentstarter-kitfilament-starter-kitfilamentphpsuperduper

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[riodwanto/superduper-filament-starter-kit

A comprehensive Laravel Filament 3 💡 starter kit with pre-installed plugins, admin panel, user management, SEO tools, theme customization, and content management for rapid application development

2708.5k](/packages/riodwanto-superduper-filament-starter-kit)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)[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)

PHPackages © 2026

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