> ## Documentation Index
> Fetch the complete documentation index at: https://alphaconsultings.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CLI Commands

> Reference for core ORM and scenario CLI commands.

# CLI Commands

## Generators

* `make:model`: generate a model file and optionally pair it with migration-ready schema
* `make:controller`: generate an Express-oriented CRUD controller
* `make:service`: generate a service layer around model CRUD
* `make:factory`: generate a factory for seeds, scenarios, and tests
* `make:registry`: generate model registration bootstrap
* `make:scenario`: generate coordinated scenario artifacts such as blog or media presets

## Database commands

* `migrate:run`: apply pending migrations
* `migrate:rollback`: roll back recent migration batches
* `migrate:reset`: roll back all applied migrations
* `migrate:fresh`: drop and rebuild schema from migrations
* `db:seed`: run a seeder class against the selected target

## Utilities

* `factory:status`: inspect factory registration and relationship graph
* `cache:stats`: inspect runtime cache activity
* `cache:clear`: clear cache keys and registry state
* `seed:status`: inspect scenario and seed flow variants

Run `npx eloquent --help` for the full current command matrix.

Use next:

* [Generators](./generators)
* [Controllers](../getting-started/controllers)
* [Services](../getting-started/services)
* [Common Scenarios](../getting-started/common-scenarios)
