Laravel 4 Blade Form Formatting (Hidden Input)

前端 未结 2 779
无人共我
无人共我 2021-01-27 18:20

I have an \"artist\" resource, and on the show route page I have a form. I am using Laravel Blade syntax. As part of this form, I am trying to send the page ID to the back end

2条回答
  •  不思量自难忘°
    2021-01-27 18:40

    You don't need to nest your blade call like that, this should work:

    {{ Form::hidden('artist-id', null, array('id' => $artist->id)) }}
    

提交回复
热议问题