@@ -1214,7 +1214,7 @@ public function handle(
12141214 ServerRequestInterface \$request,
12151215 ): ResponseInterface {
12161216 \$this->createBookStoreForm
1217- ->setAttribute('action', \$this->router->generateUri('book-store::book-store-create '));
1217+ ->setAttribute('action', \$this->router->generateUri('book-store::create- book-store'));
12181218
12191219 return new HtmlResponse(
12201220 \$this->template->render('book-store::create-book-store-form', [
@@ -1285,7 +1285,7 @@ public function handle(
12851285 ServerRequestInterface \$request,
12861286 ): ResponseInterface {
12871287 \$this->createBookStoreForm
1288- ->setAttribute('action', \$this->router->generateUri('book-store::book-store-create '));
1288+ ->setAttribute('action', \$this->router->generateUri('book-store::create- book-store'));
12891289
12901290 try {
12911291 \$data = (array) \$request->getParsedBody();
@@ -1400,7 +1400,7 @@ public function handle(
14001400
14011401 \$this->deleteBookStoreForm->setAttribute(
14021402 'action',
1403- \$this->router->generateUri('book-store::book-store-delete ', ['uuid' => \$bookStore->getUuid()->toString()])
1403+ \$this->router->generateUri('book-store::delete- book-store', ['uuid' => \$bookStore->getUuid()->toString()])
14041404 );
14051405
14061406 return new HtmlResponse(
@@ -1482,7 +1482,7 @@ public function handle(
14821482
14831483 \$this->deleteBookStoreForm->setAttribute(
14841484 'action',
1485- \$this->router->generateUri('book-store::book-store-delete ', ['uuid' => \$bookStore->getUuid()->toString()])
1485+ \$this->router->generateUri('book-store::delete- book-store', ['uuid' => \$bookStore->getUuid()->toString()])
14861486 );
14871487
14881488 try {
@@ -1583,7 +1583,7 @@ public function handle(
15831583 \$this->editBookStoreForm
15841584 ->setAttribute(
15851585 'action',
1586- \$this->router->generateUri('book-store::book-store-edit ', ['uuid' => \$bookStore->getUuid()->toString()])
1586+ \$this->router->generateUri('book-store::edit- book-store', ['uuid' => \$bookStore->getUuid()->toString()])
15871587 )
15881588 ->bind( \$bookStore);
15891589
@@ -1671,7 +1671,7 @@ public function handle(
16711671 \$this->editBookStoreForm
16721672 ->setAttribute(
16731673 'action',
1674- \$this->router->generateUri('book-store::book-store-edit ', ['uuid' => \$bookStore->getUuid()->toString()])
1674+ \$this->router->generateUri('book-store::edit- book-store', ['uuid' => \$bookStore->getUuid()->toString()])
16751675 );
16761676
16771677 try {
0 commit comments