How to create a CRUD using Symfony 7

WINW > Software Development > Symfony > How to create a CRUD using Symfony 7
Create an entity for your CRUD:
symfony console make:entity

Create the CRUD:
symfony console make:crud

Create a migration for your database and execute it:
symfony console make:migration
php bin/console doctrine:migrations:migrate

Leave a Reply