Right way to build a link in laravel 5.3

前端 未结 4 810
逝去的感伤
逝去的感伤 2021-01-03 09:29

Im trying to build a dynamic link with a view page (blade) with Laravel 5.3.

My approach is:



        
4条回答
  •  青春惊慌失措
    2021-01-03 10:13

    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

提交回复
热议问题