public function vIEw_send_email(){ $data["_email_List"]=Tbl_press_release_email::get(); $data["sent_email"] = Request::input('sent_email'); $mail = Session::get('email'); <--- array i want to get the value of it. dd($mail); return vIEw("member.email_system.send_email_press_release",compact('data','mail'));}解决方法 在视图中,您可以像这样遍历数组:
@foreach($mail as $email) {{$email}}@endforeach
要将它们存储在输入中,您可以这样做:
{{ Form::text('emalis',implode(" ",$mail)) }}
要么
<input name="first_name" type="text" value={{implode(" ",$mail)}}>总结
以上是内存溢出为你收集整理的php – 仅提取数组的值并打印到刀片LARAVEL全部内容,希望文章能够帮你解决php – 仅提取数组的值并打印到刀片LARAVEL所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)