A smart starter kit to kickstart your next Laravel project with a modern frontend and component-driven development flow.
- 🔑 Authentication (Login, Register, Password Reset, Email Verification)
- 📊 Dashboard layout with navigation and basic pages
- Laravel 12 – PHP framework for web artisans
- Livewire
- Volt
- UnoCSS – instant atomic CSS engine, zero runtime
- Flexilla – Interactive components (modal, dropdown, popover, accordion, tabs...)
- Preset UI – Preset for UnoCSS with utility classes for buttons, forms, cards, etc...
# Clone the repo
git clone https://github.com/unoforge/unoui-laravel project-name
cd project-name
# Install PHP dependencies
composer install
# Install JS dependencies
npm install
# Setup environment
cp .env.example .env
php artisan key:generate
# Run migrations
php artisan migrate
# Start development server
php artisan serve
npm run dev