CPQ Module

Scaffold

The CPQ module is the starting point for configure-price-quote functionality.

Location

src/Modules/CPQ

Runtime Registration

CPQServiceProvider registers the module with Laravel. It is set up to load:

  • CPQ config from config/cpq.php.
  • Module migrations from database/Migrations.
  • Module views under the cpq namespace.
  • Web routes from routes/web.php.
  • API routes from routes/api.php.

Current State

The module is currently minimal. The repository contains the service provider and a base Blade view, but most of the referenced module folders are not populated yet.

Use this module when new CPQ-specific models, workflows, routes, or UI need a dedicated home instead of living in the main app namespace.