Rodrigo Salles
Rodrigo Salles

Reputation: 257

how to generate an admin CRUD module in an existing symfony project

I'm going nuts with this legacy project. It was developed with the Symfony PHP framework and i never worked with it before. Seems to me that the only way to do things is using the CLI tool. But the tools work generally with all the application.

The Symfony project is organized like the following:

The apps directory contains two more directories: "cms" and "site".

I want to build just ONE admin module, a CRUD, into the "cms" app.

The "cms" directory is the admin part of the application. Can you guys give me a hand to do this?

Thanks!!

Upvotes: 1

Views: 743

Answers (1)

Farly Taboada
Farly Taboada

Reputation: 96

run the task for generating module..

php symfony generate:module cms CRUD

where cms is the app name and CRUD is the module name

Upvotes: 2

Related Questions