mercredi 31 août 2016

Laravel 5 - Call to undefined method IlluminateDatabaseEloquentCollection::Paginate()

I'm having an error

Call to undefined method IlluminateDatabaseEloquentCollection::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'));
}

Aucun commentaire:

Enregistrer un commentaire