单击页码时分页不起作用

时间:2016-07-26 10:08:21

标签: php laravel pagination laravel-5.1

我正在使用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.&nbsp;</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() !!}

非常感谢任何帮助...谢谢...

1 个答案:

答案 0 :(得分:-2)

$('input').attr('value',myNewValue);

在调用动作时返回视图。不要从控制器发送任何数据,只需加载视图, 加载视图时,使用分页方法获取数据库连接。并将分页呈现如下

public function getIndex()
{
    return view('admin.inspector.test');
}