nckrtl/launch-laravel

React, authentication, Filament, and localization scaffolding for Launch Laravel applications

Maintainers

Package info

github.com/nckrtl/launch-laravel

pkg:composer/nckrtl/launch-laravel

Transparency log

Fund package maintenance!

Liftoff

Statistics

Installs: 16

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 5

v0.3.9 2026-08-07 12:09 UTC

README

Latest Version on Packagist GitHub Tests Action Status Total Downloads

React, authentication, Filament, and localization scaffolding for the Launch React starterkit.

Requirements

  • PHP 8.3 or newer
  • Laravel 12 or 13
  • Node.js with npm, or Bun
  • A Launch React starterkit application

Installation

composer require nckrtl/launch-laravel

Setups

The package exposes three setup commands:

Command Installs
php artisan launch:setup app Fortify authentication, passkeys, two-factor authentication, dashboard, settings, and the React application shell
php artisan launch:setup filament Authentication plus a Filament 5 admin panel, user management, profile, passkey, and two-factor pages
php artisan launch:setup multilanguage JSON translations, a React example page, and Launch Vite i18n configuration

The React scaffold registry is bundled with this package, so setup does not depend on a local launch-ui checkout.

Application setup

npm install
php artisan launch:setup app
php artisan migrate
npm run build

The generated application includes Fortify login and registration, password reset, email verification, passkeys, two-factor confirmation, dashboard and account settings pages, Waymaker controllers, Wayfinder imports, and feature tests.

Filament setup

npm install
php artisan launch:setup filament
php artisan migrate
php artisan make:filament-user
npm run build

Filament authentication redirects are configured for /admin. If the application scaffold already provides a dashboard, its redirect remains in place.

Multilanguage setup

php artisan launch:setup multilanguage
npm run build

This creates lang/en.json, lang/nl.json, and resources/js/pages/TranslationExample.tsx, then enables i18n in vite.config.ts.

All setups generate Waymaker routes and are safe to run again.

Development

composer test
composer analyse
composer format -- --test
composer validate --strict

The integration workflow also runs every public setup against the current Launch React starterkit and builds the resulting application.

Changelog

See CHANGELOG.md for release history.

Security

Report vulnerabilities through the repository's security policy.

License

The MIT License. See LICENSE.md.