Im trying to build a dynamic link with a view page (blade) with Laravel 5.3.
My approach is:
You can use named routes for this
// Your route file URL::get('articles/{articleId}/edit', 'ArticlesController@edit')->name('articles.edit'); //Your view Edit
Much more cleaner IMO