PHPackages                             princenoman/laravel-rocket - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. princenoman/laravel-rocket

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

princenoman/laravel-rocket
==========================

A Laravel package to generate multiple models, migrations, controllers, requests, factories, and seeders in one command.

1.0.1(1y ago)1031MITPHPPHP ^8.0

Since Oct 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/prince-noman/laravel-rocket)[ Packagist](https://packagist.org/packages/princenoman/laravel-rocket)[ RSS](/packages/princenoman-laravel-rocket/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

### Laravel Rocket

[](#laravel-rocket)

`laravel-rocket` is a Laravel package that provides a set of commands to generate multiple resources (controllers, models, migrations, requests, factories, and seeders) in one go, allowing you to streamline your Laravel development process.

### Features

[](#features)

- Generate multiple controllers, models, migrations, requests, factories, and seeders with a single command.
- Option to create resource controllers.
- Supports Laravel 9 or above.

### Installation

[](#installation)

> Step 1: Install the package in development, you can use the --dev flag

```
composer require prince/laravel-rocket --dev

```

> Step 2: Publish the Configuration (if needed) If your package has any configuration files, you can publish them using:

```
php artisan vendor:publish --provider="Prince\LaravelRocket\LaravelRocketServiceProvider"

```

> Step 3: Register the Service Provider (for Laravel 10 or below) If you are using Laravel 9 or below, you may need to register the service provider manually in your config/app.php file:

```
'providers' => [
    // Other Service Providers

    Prince\LaravelRocket\LaravelRocketServiceProvider::class,
],

```

### Usage

[](#usage)

The package provides several artisan commands to create multiple resources at once.

> 1. Create Multiple Controllers in one command:

```
php artisan make:controllers Product Order Invoice
```

This command will generate:

```
ProductController
OrderController
InvoiceController

```

> 2. Create Resource Controllers in one command, use the --resource or -r option:

```
php artisan make:controllers Product Order Invoice -r
```

This will create:

```
ProductController (as a resource controller)
OrderController (as a resource controller)
InvoiceController (as a resource controller)

```

> Creating controller in nested folder will also work as like we do in traditional Laravel app.

```
php artisan make:controllers Backend/Product Backend/Order Backend/Invoice

php artisan make:controllers Backend/Blog Frontend/Post

```

Note that `Nested Folder` will work for all of the mentioned resources of this package.

> 3. Create Multiple Models in one command:

```
php artisan make:models Product Order Invoice
```

This will create:

```
Product model
Order model
Invoice model

```

Optionally, to create models with migrations:

```
php artisan make:models Product Order Invoice -m
```

> 4. Create Multiple Migrations for multiple models in one command:

```
php artisan make:migrations Product Order Invoice
```

> 5. Create Multiple Form request classes in one command:

```
php artisan make:requests CreateProductRequest UpdateProductRequest
```

> 6. Create Multiple Factories in one command:

```
php artisan make:factories Product Order Invoice
```

> 7. Create Multiple Seeders in one command:

```
php artisan make:seeders Product Order Invoice
```

- Contributing > Contributions are welcome! If you find any bugs or want to add new features, feel free to open an issue or submit a pull request.

License The laravel-rocket package is open-source software licensed under the [MIT](./LICENSE.md) license.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

582d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/58b1ce4f1411821829fcbe6285940c69a5b9fc1f158fcc1b897b5be8b7ab5bdd?d=identicon)[prince-noman](/maintainers/prince-noman)

---

Top Contributors

[![prince-noman](https://avatars.githubusercontent.com/u/67705630?v=4)](https://github.com/prince-noman "prince-noman (2 commits)")

---

Tags

artisancomposer-packagelaravelpackagephp

### Embed Badge

![Health badge](/badges/princenoman-laravel-rocket/health.svg)

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

###  Alternatives

[wireui/wireui

TallStack components

1.8k1.3M16](/packages/wireui-wireui)[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21147.4k](/packages/ramonrietdijk-livewire-tables)

PHPackages © 2026

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