jeddsaliba / filament-one
Filament One is a flexible starter kit for building scalable admin dashboards with essential features, security, and modern PHP practices for a smooth development experience.
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2
- bezhansalleh/filament-shield: ^3.3
- charrafimed/global-search-modal: ^3.6
- devonab/filament-easy-footer: ^1.1
- dotswan/filament-grapesjs-v3: ^1.0
- filament/filament: ^3.2
- filament/spatie-laravel-media-library-plugin: ^3.2
- filament/spatie-laravel-settings-plugin: ^3.2
- jeffgreco13/filament-breezy: ^2.5
- laravel/framework: ^11.31
- laravel/telescope: ^5.4
- laravel/tinker: ^2.9
- malzariey/filament-daterangepicker-filter: ^3.2
- parallax/filament-comments: ^1.4
- pxlrbt/filament-environment-indicator: ^2.1
- riodwanto/filament-ace-editor: ^1.1
- rmsramos/activitylog: ^1.0
- shuvroroy/filament-spatie-laravel-health: ^2.3
- stechstudio/filament-impersonate: ^3.15
- ysfkaya/filament-phone-input: ^3.1
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.14
- fakerphp/faker: ^1.23
- laravel/pail: ^1.1
- laravel/pint: ^1.13
- laravel/sail: ^1.26
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.1
- phpunit/phpunit: ^11.0.1
README
Filament One is a powerful and flexible starting point for building robust and scalable admin dashboards. This boilerplate is designed to help developers quickly set up an admin panel with essential features, security measures, and user-friendly management tools.
Built using FilamentPHP, it leverages modern PHP development practices to ensure a smooth and efficient experience.
Key Features:
- User Management: Easily manage user accounts, including registration, profile updates, and deletion.
- Multi-Factor Authentication (MFA): Enhance security with optional two-factor authentication for user accounts.
- API Keys Management: Enable secure storage and management of API keys and credentials, facilitating seamless integration with internal and third-party APIs.
- User Roles & Permissions: Implement role-based access control (RBAC) to ensure users have the right level of access.
- Messages: Provides an easy-to-use interface for real-time messaging within Filament admin panels.
- Export Reports: Generate and export reports in Excel (.xlsx) or CSV formats for data analysis and record-keeping.
- Page Builder: A drag-and-drop interface that allows users to create, customize, and manage pages effortlessly. Supports various content blocks, real-time preview, and responsive design to ensure a seamless experience across devices.
Why Choose Filament One?
- Time-Saving: Get started quickly with a ready-to-use admin panel instead of building from scratch.
- Scalability: Designed to be easily extendable, allowing you to add more features as needed.
- Security Focused: Built-in security features like MFA and role-based permissions to protect user data.
- User-Friendly: Clean UI and intuitive navigation for a seamless admin experience.
- Open & Customizable: Modify and extend the boilerplate according to your project’s requirements.
Table of Contents
Getting Started
Setup Local Environment
Database
Generate Filament Shield Permissions
Create Administrator Account
Generate Test Data
Initialize The Application
Troubleshooting
Plugins Used
Acknowledgments
Support
Getting Started
Create a new project using this command:
composer create-project jeddsaliba/filament-one
Install the dependencies
by running the following commands:
composer install npm install
Setup Local Environment
Generate a new .env
file by running:
cp .env.example .env
Configure the APP_URL
in your .env
file:
APP_URL=http://localhost
Configure the MySQL
connection in your .env
file:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
or if you're using PostgreSQL
:
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
Configure the Mailer
in your .env
file:
MAIL_MAILER=smtp
MAIL_SCHEME=
MAIL_HOST=
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME=
Database
Assuming that you have already created an empty database, run this command to migrate the database tables:
php artisan migrate
Generate Filament Shield Permissions
In order to generate filament shield permissions, run this command:
php artisan shield:generate --all
Create Administrator Account
In order to create an administrator account, run this command:
php artisan shield:super-admin
Generate Test Data
You may also run this command in order to populate the database with test data:
php artisan db:seed
Initialize The Application
In order to start the application, use any of the following commands:
npm run dev
or
php artisan serve
Troubleshooting
- If the css and js for the custom page are not working, please run this command:
npm run build
Plugins Used
These are Filament Plugins use for this project.
Acknowledgments
Support
Show Your Support
Give a ⭐️ if this project helped you!