seito-developer/laravel-livewire-v3-starterkit

A Laravel 12 starter kit with Livewire v3, Flux UI, Tailwind CSS v4, Fortify authentication, and Docker Sail.

Maintainers

Package info

github.com/seito-developer/laravel-livewire-v3-starter-kit

Language:Blade

Type:project

pkg:composer/seito-developer/laravel-livewire-v3-starterkit

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-03-26 06:18 UTC

This package is auto-updated.

Last update: 2026-03-26 06:19:09 UTC


README

A Laravel 12 starter kit featuring Livewire v3 (pinned), Flux UI, Tailwind CSS v4, Fortify authentication with 2FA, and Docker Sail with PostgreSQL.

Stack

  • Laravel 12 — PHP framework
  • Livewire v3 — Full-stack reactive components (pinned to v3)
  • Flux UI — Component library for Livewire (paid license required)
  • Tailwind CSS v4 — Utility-first CSS framework
  • Laravel Fortify — Authentication backend (login, register, password reset, 2FA)
  • Laravel Sail — Docker-based development environment (PostgreSQL)
  • Pest — Testing framework

Features

  • Login / Register / Forgot Password / Email Verification
  • Two-factor authentication (2FA)
  • Dashboard
  • Profile settings (name, email)
  • Password change
  • Appearance preferences (dark mode)
  • Account deletion

Prerequisites

Flux UI requires a paid license. Without valid Flux credentials, composer create-project will fail.

  1. PHP 8.2+
  2. Composer
  3. Node.js 20+ and npm
  4. A valid Flux UI license — purchase at https://fluxui.dev

Configure Flux credentials

Before installing, add your Flux credentials to your global Composer auth:

composer config --global http-basic.composer.fluxui.dev your@email.com your-license-key

Quick Start

laravel new my-app --using=seito-developer/laravel-livewire-v3-starterkit

This will:

  1. Download the template
  2. Copy .env.example to .env
  3. Generate an app key
  4. Create a SQLite database and run migrations

Your app is ready at http://localhost:8000 after running:

cd my-app
composer dev

Switching to PostgreSQL with Sail

The default installation uses SQLite. To switch to Docker Sail with PostgreSQL:

  1. Install Docker Desktop
  2. Install Sail:
    php artisan sail:install
  3. Update .env — uncomment and set the PostgreSQL values:
    DB_CONNECTION=pgsql
    DB_HOST=pgsql
    DB_PORT=5432
    DB_DATABASE=laravel
    DB_USERNAME=sail
    DB_PASSWORD=password
    
  4. Start Sail and run migrations:
    ./vendor/bin/sail up -d
    ./vendor/bin/sail artisan migrate

Development

composer dev

This runs concurrently:

  • php artisan serve — HTTP server
  • php artisan queue:listen — Queue worker
  • php artisan pail — Log viewer
  • npm run dev — Vite asset bundler

Testing

composer test

License

MIT