Routing
Generating Generic CRUD Routing
php bin/console debug:router------------------------ --------------- -------- ------ -------------------------
Name Method Scheme Host Path
------------------------ --------------- -------- ------ -------------------------
app_book_index GET ANY ANY /books/
app_book_create GET|POST ANY ANY /books/new
app_book_update GET|PUT|PATCH ANY ANY /books/{id}/edit
app_book_show GET ANY ANY /books/{id}
app_book_bulk_delete DELETE ANY ANY /books/bulk-delete
app_book_delete DELETE ANY ANY /books/{id}Using a Custom Path
Generating API CRUD Routing
Excluding Routes
Generating Only Specific Routes
Generating Routing for a Section
Last updated
Was this helpful?