Skip to content
Advertisement

routes/web route me to another route

My web doesn’t seem to be directing to the correct page.

Here is my blade

JavaScript

Here is my routes/web

JavaScript

and here is my controller

JavaScript

For some reason, when I click the a tag with the href {{ route('add-new-information') }} to go to the add page 'adminviews/addinfo',

instead the page will go to the 'adminviews/infoadmin' page, which will cause an error, because no parameters are being sent.

I tried checking the code, but it looks correct to me. Can anybody find an error on this?

Advertisement

Answer

the problem is with your routes: these two routes are ambiguous:

JavaScript

just think of below scenario:

router wants to route, this url : /information/add-new-information

router will hit the first defined route, because it is compatible with the definition ('/informations/{id}')

Note :{id} is a variable and can be any string

so it will go with this.

Solution

write the more restricted route first,

and more general route later:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement