Right way to build a link in laravel 5.3

前端 未结 4 784
逝去的感伤
逝去的感伤 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:10

    You can try with this

    
    

    and your route.php file

    Route::get('/articles/edit/{art_id}', 'ArticlesController@edit');

提交回复
热议问题