Laravel AdminTW is a Laravel Livewire Starter Kit and a TALL stack admin theme, designed for rapid development and ease of use. It's built on top of Laravel, Livewire, and Tailwind CSS, offering a modern and efficient admin dashboard.
Features
- Two-Factor Authentication (2FA)
- Audit Trails
- System Settings
- Multiple Users Support
- Roles and Permissions Management
- Comprehensive Test Suite (Pest PHP)
- Light & Dark Mode Support (based on user OS settings)
- Tests
Installation
Using Laravel Installer (Recommended from Laravel Installer version 5.14) If you have Laravel Installer 5.14 or later, you can quickly set up AdminTW with:
laravel new my-project --using=dcblogdev/laravel-admintwManual Installation
- Clone the repository
git clone [email protected]:dcblogdev/laravel-admintw.git my-project
2. Open the project folder
```bash
cd my-project
- Copy the
.env.examplefile to.env:
cp .env.example .env
4. Set database and emails settings inside `.env`
5. Install PHP Dependencies
```bash
composer install
- Install JavaScript Dependencies & Build Assets
npm install && npm run build
7. Generate Application Key
```bash
php artisan key:generate
- Create Storage Symlink
php artisan storage:link
9. Run Database Migrations & Seed Data
```bash
php artisan migrate --seed
- Start the Development Server
php artisan serve
Laravel AdminTW supports both light and dark mode based on the users OS. It provides blade and Laravel Livewire components for common layout/UI elements and a complete test suite (Pest PHP).
### Documentation
Complete documentation is available at [laraveladmintw.com](https://laraveladmintw.com).
### Community
Join the Discord community for quick help and discussions: [https://discord.gg/VYau8hgwrm](https://discord.gg/VYau8hgwrm).
### Contributing
Contributions are welcome and will be fully credited. Please ensure any changes in behavior are documented in `readme.md` and other relevant files. Submit one pull request per feature.
### Security
For any security-related issues, please email [[email protected]](mailto:[email protected]) instead of using the issue tracker.
### License
Laravel AdminTW is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).





