i have live website in laravel and 50+ links or URL
Current Url of Home Page: mysite.com/index.php/home or mysite.com/index.php
I want add products in all URL
For example: mysite.com/index.php/products/home
i can do manually add product in all links but it take so much time. please provide alternative way
route('name')for your routes is that you can safely change the route in your routes file whenever you want to whatever you want (with same number of arguments) and all the links will magically still work (since they're dynamically generated withroute(...). I don't see the issue.route(...)oraction(...). How do you actually insert the links in your HTML?<a href="{{ route('findBySlug', $page->slug) }}")>goto</a>. I doubt this is of any help to your specific project so please expand more on how you set up your rotes and links if you want help.