我正在尝试在Laravel项目中使用JQuery数据表。
我的MySQL数据库中有一些字段,并在我的UI中显示它们。
例如,我有姓名,家庭和日期以及时间。
我想在我的jquery datatable中显示添加时间。这意味着如果我有2个记录,一个是4,另一个是2,在表格末尾显示我6。
<table id="list-report" class="table table-bordered responsive">
<thead>
<tr>
<th>row</th>
<th>explain</th>
<th>time</th>
<th> date</th>
</tr>
</thead>
<tbody>
@foreach($datas as $key=>$value)
<tr>
<td>{!!++$key!!}</td>
<th>{{ str_limit($value->explain, $limit = 100, $end = '...') }}</th>
<td>{{$value->time}}</td>
<td class="date">{{$value->date}}
</td>
</tr>
@endforeach
</tbody>
</table>
非常感谢。