我正在与Laravel合作,我正试图对我的书桌进行分页。我收到了这个错误"在Laravel"中调用数组上的成员函数links()。这可能是重复的错误,但我仍然无法弄清楚如何解决我的问题。
BookController小提琴:
public function index()
{
$books = Book::simplePaginate(3)->all();
$authors = Author::all();
$genres = Genre::all();
return view('books.all')->withBooks($books)->withAuthors($authors)->withGenres($genres);
}
books / all.blade.php小提琴
<table class="table table-hover">
<tr class="info">
<td>#</td>
<td>Name</td>
<td>Author</td>
<td><center>Visit</center></td>
</tr>
@foreach($books as $book)
<tr>
<td width="50px"><img width="50px" height="75px" src="{{ asset('images/' . $book->image) }}"></td>
<td width="50px">{{ $book->name }}</td>
<td width="50px">{{ $book->author->name }}</td>
<td width="50px"><center><a href="{{ url('books', $book->id) }}"><button class="btn btn-success">Visit</button></a></td>
</tr>
@endforeach
</table>
{{ $books->links() }}
答案 0 :(得分:1)
只需从$ books变量中删除 - &gt; all()方法。
$books = Book::paginate(10);
paginate()函数考虑从表中获取所有内容,这是由Book model
获取的