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.
-
π‘οΈ User & Access Management
- Filament Shield for comprehensive role-based access control
- π₯ Multiple user roles with granular permissions
- π Secure authentication workflows
-
π€ Profile & User Experience
- π¨π»β𦱠Customizable profile page from Filament Breezy
- π Dark/light mode switching
- π Personalized user dashboard
-
π¨ Theme & UI Customization
- πΌοΈ Theme settings for panel colors and layout preferences
- π§© Modular design for easy extension
- ποΈ Responsive interface for all devices
-
π Content Management
- π Blog module with categories and tags
- πΌοΈ Banner management system
- π Event scheduling capabilities
-
π Media Management
- π Complete media library with Filament Spatie Media
- πΌοΈ Image optimization and thumbnails
- π Easy upload and organization
-
π Localization & Translation
- π » Powerful Lang Generator tool
- π Automated translation capabilities
- π Multi-language support for global applications
-
π§ Email & Notifications
- π Configure mail settings on the fly
- π¨ Customizable email templates
- π User notification system
-
π§ System Configuration
- βοΈ Frontend web settings (Site Name, Scripts, etc.)
- π Log viewer and error tracking
- π§° Developer-friendly tools
-
π SEO & Analytics
- π Comprehensive SEO settings and optimization
- π Laravel Trend integration for data visualization
- π Traffic and user analytics
-
π οΈ Developer Experience
- β‘ Optimized performance out of the box
- π Code editor integration
- π§ͺ Testing tools and infrastructure
- User impersonation feature for admins
- Contact Us stats dashboard widget
- Blog module improvements (stats, author filtering, status tracking)
- Enhanced menu builder with more locations and configuration
- Clustered site settings and new site editor page
- Improved site logo functionality
- Updated panel footer and various UI/UX enhancements
- Improved security headers, new middleware, and log channels
- Enhanced afterSave hooks and visibility suffix actions
- Updated translations and language generator improvements
- Various bug fixes and styling improvements
Create project with this composer command:
composer create-project riodwanto/superduper-filament-starter-kit
Setup your project easily using the one of setup scripts:
php bin/setup.php
Or manually:
Setup your env:
cd superduper-filament-starter-kit
cp .env.example .env
Run migration & seeder:
php artisan migrate
php artisan db:seed
or
php artisan migrate:fresh --seed
Generate Shield permissions & policies:
php artisan shield:generate --all
One Liner:
php artisan migrate && php artisan db:seed && php artisan shield:generate --all
[Important] Bind permissions to roles:
```bash
php artisan db:seed --class=PermissionsSeeder
Generate key:
php artisan key:generate
Storage Link:
php artisan storage:link
Install dependencies:
npm install
Build :
npm run dev
OR
npm run build
Start development server:
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 for improving panel perfomance.
php artisan icons:cache
Please see this Improving Filament panel performance documentation for further improvement
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
- 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
php artisan superduper:lang-translate en fr --json
These are Filament Plugins use for this project.
Other recommendations for your starter, in my personal opinion:
- Rupadana - API Resources : Generate API for your Resources.
- Bezhan Salleh - Language Switch : Zero config Language Switcher plugin for Filament Panels.
- Kenepa - Resource Lock : Resource locking when other user begins editing a resource.
- Ralph J. Smit - Components : A collection of handy components.
- Tapp Network - Laravel Auditing : Auditing package which contains a relation manager for audits that you can add to your resources.
- Shuvro Roy - Spatie Laravel Health : Health monitoring for Filament.
Filament Starter is provided under the MIT License.
If you discover a bug, please open an issue.