I want to create a resourceful link with Laravel. Normally I just use the {{ link_to_route(\'Yadayadayada.route\', \'LinkName\', $params }}
{{ link_to_route(\'Yadayadayada.route\', \'LinkName\', $params }}
But in this
If you Route use a Closure, you can use URL::to(), like this
URL::to()
Dashboard
As @orrd sugested, in general terms is better to use named routes, so it can be easily change the URL later:
(ref: https://laravel.com/docs/5.0/helpers#urls)