fibers/rocket
Fibers Rocket adds developer-friendly Artisan commands to quickly scaffold common Laravel parts—models, controllers, migrations, views, layouts, routes, and more. Templates follow Laravel conventions, are easy to customize, and commands are context-aware to auto-fill boilerplate.
php artisan fibers:make:migration <Title> [Options]
This command will create a new Migration and optionally continue to creating a model. It tries to speed up migration creation by automatically filling usual boilerplate parts.
Command will automatically create pivot table migration files when needed.
Migration creation is simple, but does require user's help to set appropriate attributes. This multiline input uses simplified (but modified) migration syntax. Read more about attribute input here.
| Parameter | Description |
|---|---|
title |
Title is used also for other naming derivatives. It is normalized automatically. |
| Option | Description |
|---|---|
| `--model | M` |
| `--last | L` |
--table= |
Will set table name. If not set title parameter will be used |
::: tip
Use --silent|S option to suppress unnecessary input prompt and to populate data automatically.
:::
How can I help you explore Laravel packages today?