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.
- 🛡 Filament Shield for managing role access
- 👨🏻🦱 Customizable profile page from Filament Breezy
- 🌌 Managable media with Filament Spatie Media
- 🖼 Theme settings for changing panel color
- 💌 Setting mail on the fly in Mail settings
- 🅻 Lang Generator
- New Products Resource UI form
- Dashboard Chart Widgets
- Bugs fix & Improvement
- Products API Resource
- Posts API Resource
Create project with this composer command:
composer create-project tyronemurg/filament-starter-kit
Setup your env:
cd filament-starter-kit
cp .env.example .env
Run migration & 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: [email protected]
password: superadmin
It's recommend to run below command as suggested in Filament Documentation for improving panel perfomance.
php artisan icons:cache
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.
Filament Starter is provided under the MIT License.
If you discover a bug, please open an issue.