代码在选项卡中,代码为:
<div class="tab-pane fade in active" id="biography">
<p>{!! $artist{'description'} !!}</p>
</div>
<div class="tab-pane fade" id="exhibition">
<table class="table table-condensed">
<thead>
<tr>
<th>Title</th>
<th>Year</th>
</tr>
</thead>
<tbody>
@foreach($artist{'exhibition'} as $exhibition_history)
<tr>
<td>{!! $exhibition_history{'title'} !!}</td>
<td>{!! $exhibition_history{'year'} !!}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
此处描述显示在视图页面中,但用户登录时不显示展览标题和历史记录。
如果用户未登录,他们可以查看描述和展览.. 任何人都可以告诉我这个适当的解决方案.. 我正在使用rbac