Note: From version 5 AdminTW is a complete project rather than a package. If you are looking for the package version, please use version 4.
Laravel AdminTW is a Laravel Livewire Starter Kit and a TALL stack admin theme, designed for rapid development and ease of use.
AdminTW is built on top of Laravel, Livewire, and Tailwind CSS, offering a modern and efficient admin dashboard.
- 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
If you have Laravel Installer 5.14 or later, you can quickly set up AdminTW with:
laravel new my-project --using=dcblogdev/laravel-admintw- Clone the repository
git clone [email protected]:dcblogdev/laravel-admintw.git my-projectOpen the project folder
cd my-projectCopy the .env.example file to .env:
cp .env.example .envSet database and emails settings inside .env
Install PHP Dependencies
composer installInstall JavaScript Dependencies & Build Assets
npm install && npm run buildGenerate Application Key
php artisan key:generateCreate Storage Symlink
php artisan storage:linkRun Database Migrations & Seed Data
php artisan migrate --seedStart the Development Server
php artisan serveLaravel AdminTW supports both light and dark mode based on the users OS.
Provided are blade and Laravel Livewire components for common layout / UI elements and a complete test suite (Pest PHP).
Complete docs at laraveladmintw.com
There is a Discord community. https://discord.gg/VYau8hgwrm For quick help, ask questions in the appropriate channel.
Contributions are welcome and will be fully credited.
-
Document any change in behaviour - Make sure the
readme.mdand any other relevant documentation are kept up-to-date. -
One pull request per feature - If you want to do more than one thing, send multiple pull requests.
If you discover any security related issues, please email [email protected] email instead of using the issue tracker.
Laravel AdminTW is open-sourced software licensed under the MIT license.

