0
我有下面的代碼顯示從數據庫分頁中laravel顯示笨拙
<h2> Unsolved Questions </h2>
@if(!$questions)
<p> There are no Unsolved Questions </p>
@else
<ul>
@foreach($questions as $question)
<li> {{ $question->questions }}</li>
@endforeach
</ul>
{{ $questions->links() }}
@endif
結果顯示正常未解決的問題但是分頁結果表明這樣的
«
1
2
»
哪裏能問題是?
控制器
public function create()
{
return View::make('questions.create')
->with('title', 'Q&A ask/Answer question')
->with('questions', Question::unsolved());
}
型號
public static function unsolved()
{
return static::where('solved', '=', 0)->orderBy('id', 'DESC')->paginate(5);
}