samedi 18 juin 2016

Laravel 5 - Call to undefined method Illuminate\Database\Eloquent\Collection::Paginate()

I'm having an error "Call to undefined method Illuminate\Database\Eloquent\Collection::Paginate()" I've been doing this:

public function index () {

    $articles = Article::latest('published_at')->published()->get()->paginate(5);
    $articlesLink = $articles->render();

    return view('articles.index', compact('articles', 'articlesLink'));
}



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire