我尝试使用laravel blade创建一个包含复选框的表。 但是复选框没有出现在表格中。 这是我的代码:
@section('content')
<div class="container">
<table class="table table-striped">
<thead>
<tr>
<th>Survey</th>
<th>Date</th>
<th>Published</th>
<th>Creator</th>
<th>seen</th>
</tr>
</thead>
<tbody>
@foreach($surveys as $survey)
<tr {!! !$survey->seen && session('statut') == 'admin'? 'class="warning"' : '' !!}>
<td>{{$survey->title}}</td>
<td>{{$survey->created_at->todatestring()}}</td>
<td>{!! Form::checkbox('active', $survey->id, $survey->active) !!}</td>
@foreach($users as $user)
@if($user->id == $survey->user_id)
<td>
{{$user->name}}
</td>
@endif
@endforeach
<td>{!! Form::checkbox('seen', $survey->id, $survey->seen) !!}</td>
<td><button type="button" class="btn btn-info">Detail</button></td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection
请帮帮我!提前谢谢
答案 0 :(得分:0)
答案 1 :(得分:0)
我已经尝试过您的代码,只要您已经正确完成了所有这些操作,该复选框就能正常运行。
$surveys
已经从您的控制器发送了数据$survey->seen
包含布尔值(true / false)