[Solved] can’t find the symfony demo routing system?


In Symfony 4.1 routing is defined directly in controllers with annotation:
http://symfony.com/doc/current/routing.html

In your case, you can find routing for add, delete, edit and show directly above each actions:
https://github.com/symfony/demo/blob/master/src/Controller/BlogController.php

solved can’t find the symfony demo routing system?