如何通过插值或使用条件在laravel 5.4刀片中显示cookie值?
有点像这样:
@if (Cookie::get('user_first_name') !== null)
<a href="javascript:;" id="user_name">
<i class="fa fa-sign-in" aria-hidden="true"></i>{{ Cookie::get('user_first_name') }}
</a>
@else
答案 0 :(得分:0)
您建议的方式是正确的:
{{ Cookie::get('user_first_name') }}
鉴于您的评论,您可能没有正确设置cookie。你可以尝试:
Cookie::queue('user_first_name', 'John', 15);
return view('the-view');