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'));
}