我正在使用laravel分页。当我点击下一页或任何页码时,没有任何反应。 控制器功能
public function getIndex()
{
$articles = Inspector::paginate(15);
return view('admin.inspector.test', compact('articles'));
}
查看文件
<table class="table table-bordered" id="mytable">
<thead>
<tr>
<th>Sr. No. </th>
<th>Email</th>
</tr>
</thead>
<tbody>
@foreach ($articles as $article)
<tr>
<td>{{ $article->id }}</td>
<td>{{ $article->email }}</td>
</tr>
@endforeach
</tbody>
</table>
{!! $articles->render() !!}
非常感谢任何帮助...谢谢...
答案 0 :(得分:-2)
$('input').attr('value',myNewValue);
在调用动作时返回视图。不要从控制器发送任何数据,只需加载视图, 加载视图时,使用分页方法获取数据库连接。并将分页呈现如下
public function getIndex()
{
return view('admin.inspector.test');
}