PHPackages                             hardimpactdev/liftoff-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. hardimpactdev/liftoff-laravel

ActiveLibrary[Framework](/categories/framework)

hardimpactdev/liftoff-laravel
=============================

This is my package laravel

v0.3.1(2mo ago)0156[5 PRs](https://github.com/hardimpactdev/craft-laravel/pulls)MITPHPPHP ^8.3CI passing

Since Oct 13Pushed 1mo agoCompare

[ Source](https://github.com/hardimpactdev/craft-laravel)[ Packagist](https://packagist.org/packages/hardimpactdev/liftoff-laravel)[ Docs](https://github.com/hardimpactdev/craft-laravel)[ GitHub Sponsors](https://github.com/Liftoff)[ RSS](/packages/hardimpactdev-liftoff-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (12)Versions (31)Used By (0)

Craft Laravel Package
=====================

[](#craft-laravel-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d27bd4d22388f14c87526da0fd576c44e7a3185150e7d29ab90e0362715c00cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f68617264696d706163746465762f63726166742d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/hardimpactdev/craft-laravel)[![GitHub Tests Action Status](https://camo.githubusercontent.com/0f47ba8092ec620e4ac1b1ef4dc208f5a3876a848a14c97212f1feadcaf106dd/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f68617264696d706163746465762f63726166742d6c61726176656c2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/hardimpactdev/craft-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/d8bbd0ee2313f61fbbe7092a38e5a766d28891f8b078428cf15381a0db4c4aaa/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f68617264696d706163746465762f63726166742d6c61726176656c2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/hardimpactdev/craft-laravel/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/42511f00522b87fc692f2d7f358d20e791c92f2c841f3ede7f0b74f7978429fb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f68617264696d706163746465762f63726166742d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/hardimpactdev/craft-laravel)

Companion scaffolding package for [craft-starterkit](https://github.com/hardimpactdev/craft-starterkit). Provides commands to rapidly set up authentication, dashboard, settings, CMS (Filament), and multi-language support.

Support us
----------

[](#support-us)

[![](https://camo.githubusercontent.com/835ad0d63d49fc1f1fb5fbe5cea7a056a86407755ed5aa80e955658f85fb225d/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f4c61726176656c2e6a70673f743d31)](https://spatie.be/github-ad-click/Laravel)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

Requirements
------------

[](#requirements)

- PHP 8.1 or higher
- Laravel 10.x, 11.x, or 12.x
- Node.js and npm/bun for frontend assets

AI-Assisted Development
-----------------------

[](#ai-assisted-development)

This package includes [Laravel Boost](https://laravel.com/ai/boost) integration. When you have both packages installed, AI assistants will automatically understand the available scaffolding commands.

```
composer require laravel/boost --dev
php artisan boost:install
```

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require hardimpactdev/craft-laravel
```

Scaffolders
-----------

[](#scaffolders)

The package provides powerful scaffolding commands to quickly set up different aspects of your application. All scaffolders automatically generate routes using the waymaker package.

### Available Scaffolders

[](#available-scaffolders)

#### 1. App Scaffolder (Full Application Setup)

[](#1-app-scaffolder-full-application-setup)

The most comprehensive scaffolder that sets up a complete application with authentication and dashboard.

```
php artisan craft:setup app
```

This scaffolder includes:

- ✅ App class with redirect configuration
- ✅ Dashboard controller and views
- ✅ Settings pages (profile, password, appearance)
- ✅ HandleInertiaRequests middleware
- ✅ TypeScript type definitions
- ✅ Feature tests
- ✅ Full authentication system (runs Auth scaffolder)
- ✅ Automatic route generation

**Note:** For CMS functionality, use `php artisan craft:setup cms` instead.

#### 2. Auth Scaffolder

[](#2-auth-scaffolder)

Sets up a complete authentication system with login, registration, password reset, and email verification.

```
php artisan craft:setup auth
```

This scaffolder includes:

- ✅ Authentication controllers with route attributes
- ✅ Login request validation
- ✅ Vue.js authentication pages
- ✅ Authentication tests
- ✅ User migration publishing

**Note:** The auth scaffolder requires the App class to be present. If running standalone, ensure you have an App class or run the app scaffolder instead.

#### 3. Dashboard Scaffolder

[](#3-dashboard-scaffolder)

Sets up dashboard and settings pages. Requires authentication to be set up first.

```
php artisan craft:setup dashboard
```

This scaffolder includes:

- ✅ App class with redirect configuration
- ✅ Dashboard controller and views
- ✅ Settings pages (profile, password, appearance)
- ✅ HandleInertiaRequests middleware
- ✅ TypeScript type definitions
- ✅ Feature tests
- ✅ Automatic route generation

**Note:** Run `php artisan craft:setup auth` first, or use `php artisan craft:setup app` which includes both.

#### 4. CMS Scaffolder

[](#4-cms-scaffolder)

Sets up Filament CMS with user management and authentication.

```
php artisan craft:setup cms
```

This scaffolder includes:

- ✅ App class with redirect configuration
- ✅ Full authentication system (runs Auth scaffolder)
- ✅ Filament package installation
- ✅ User resource for managing users
- ✅ Admin panel configuration
- ✅ Filament CSS build process
- ✅ Automatic route generation

#### 5. Multilanguage Scaffolder

[](#5-multilanguage-scaffolder)

Sets up multi-language/i18n support with translation files.

```
php artisan craft:setup multilanguage
```

This scaffolder includes:

- ✅ Language translation files
- ✅ Example translation component
- ✅ Automatic route generation

### Route Generation

[](#route-generation)

All scaffolders use the waymaker package to automatically generate routes from controller attributes. Routes are generated at the end of each scaffolding process, eliminating the need to manually run `php artisan waymaker:generate`.

### Files and Directories Created

[](#files-and-directories-created)

#### App Scaffolder creates:

[](#app-scaffolder-creates)

```
app/
├── App.php
├── Http/
│   ├── Controllers/
│   │   ├── DashboardController.php
│   │   └── Settings/
│   │       ├── AppearanceController.php
│   │       ├── PasswordController.php
│   │       └── ProfileController.php
│   ├── Middleware/
│   │   └── HandleInertiaRequests.php
│   └── Requests/
│       └── Settings/
│           └── ProfileUpdateRequest.php
resources/js/
├── pages/
│   ├── Dashboard.vue
│   └── settings/
│       ├── Appearance.vue
│       ├── Password.vue
│       └── Profile.vue
└── types/
    └── index.d.ts
tests/Feature/
├── DashboardTest.php
└── Settings/
    ├── PasswordUpdateTest.php
    └── ProfileUpdateTest.php

```

#### Auth Scaffolder creates:

[](#auth-scaffolder-creates)

```
app/
├── Actions/Fortify/
│   ├── CreateNewUser.php
│   └── ResetUserPassword.php
├── Concerns/
│   ├── PasswordValidationRules.php
│   └── ProfileValidationRules.php
├── Http/
│   ├── Controllers/Settings/
│   │   └── TwoFactorAuthenticationController.php
│   └── Requests/Settings/
│       └── TwoFactorAuthenticationRequest.php
└── Providers/
    └── FortifyServiceProvider.php
config/
└── fortify.php
resources/js/
├── components/
│   ├── TwoFactorRecoveryCodes.vue
│   └── TwoFactorSetupModal.vue
├── composables/
│   └── useTwoFactorAuth.ts
└── pages/auth/
    ├── ConfirmPassword.vue
    ├── ForgotPassword.vue
    ├── Login.vue
    ├── Register.vue
    ├── ResetPassword.vue
    ├── TwoFactorChallenge.vue
    └── VerifyEmail.vue
tests/Feature/Auth/
├── AuthenticationTest.php
├── EmailVerificationTest.php
├── PasswordConfirmationTest.php
├── PasswordResetTest.php
└── RegistrationTest.php

```

### Usage Examples

[](#usage-examples)

#### Quick Start - Full Application

[](#quick-start---full-application)

```
# Install the package
composer require hardimpactdev/craft-laravel

# Run the app scaffolder for a complete setup
php artisan craft:setup app

# Install frontend dependencies
npm install # or bun install

# Run migrations
php artisan migrate

# Start development server
npm run dev # or bun dev
```

#### Authentication Only

[](#authentication-only)

```
# Run just the auth scaffolder
php artisan craft:setup auth

# Note: Requires App class to be present
```

#### CMS with Authentication

[](#cms-with-authentication)

```
# Run the CMS scaffolder (includes auth)
php artisan craft:setup cms

# Install frontend dependencies
npm install # or bun install

# Run migrations
php artisan migrate

# Create a Filament admin user (required to access /admin)
php artisan make:filament-user
```

### Important Notes

[](#important-notes)

1. **Middleware Replacement**: The HandleInertiaRequests middleware will be replaced if it already exists in your application.
2. **Route Attributes**: All controllers use route attributes from the waymaker package, eliminating the need for manual route definitions.
3. **App Class**: The App class provides a centralized location for application configuration, including login redirect routes.
4. **File Merging**: When copying directories, existing files are preserved unless they have the same name as files being copied.
5. **Dependencies**: Make sure to install the waymaker package if not already installed:

    ```
    composer require nckrtl/waymaker
    ```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [nckrtl](https://github.com/nckrtl)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

44

—

FairBetter than 91% of packages

Maintenance95

Actively maintained with recent releases

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 84.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~2 days

Total

23

Last Release

73d ago

PHP version history (2 changes)v0.1.0PHP ^8.4

0.1.9PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/9d5702c35fc18764615b1a80dffdcd4a980a04fd79bc2192bc7db79691ae0447?d=identicon)[nckrtl](/maintainers/nckrtl)

---

Top Contributors

[![nckrtl](https://avatars.githubusercontent.com/u/18613261?v=4)](https://github.com/nckrtl "nckrtl (39 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")[![brsbst](https://avatars.githubusercontent.com/u/258108023?v=4)](https://github.com/brsbst "brsbst (1 commits)")

---

Tags

laravelCraft

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/hardimpactdev-liftoff-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/hardimpactdev-liftoff-laravel/health.svg)](https://phpackages.com/packages/hardimpactdev-liftoff-laravel)
```

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k84.2M224](/packages/laravel-horizon)[lunarstorm/laravel-ddd

A Laravel toolkit for Domain Driven Design patterns

17959.0k](/packages/lunarstorm-laravel-ddd)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[jonpurvis/squeaky

A Laravel Validation Rule to Help Catch Profanity.

706.0k](/packages/jonpurvis-squeaky)[blendbyte/filament-title-with-slug

TitleWithSlugInput - Easy Permalink Slugs for the FilamentPHP Form Builder (PHP / Laravel / Livewire)

1322.4k3](/packages/blendbyte-filament-title-with-slug)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
