Skip to content
Advertisement

Route isn’t redirecting me to the correct page. It just shows me the same page but the url changes

I’ve made a blog template but I having trouble making the routes. When I click on the link, it should redirect me to the article page. Instead it just redirects me to the same page/same exact location. Here’s my code:

JavaScript

BlogController :

JavaScript

Routes :

JavaScript

The routes that supposed to be redirecting me to another page is the 2nd one with BlogController@getArticles. The other routes are fine a have no problem.

Can someone kindly show me what I did wrong ?

Advertisement

Answer

Well your question is little confusing, because that’s the expected result from the code.

You are calling the ‘blogs.show’ route, which redirects you to the blogs page. If you want to create a seperate page for every article, you can use Dynamic Rounting in laravel.

All you have to do is:

in web.php:

JavaScript

and in your controller:

JavaScript

After that, <a href={{route("article.show",$blog->slug)}}></a> will work.

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