How to add paginate to laravel eloquent?

Solution:

Use following code

$articles = Article::orderBy('updated_at', 'DESC')
            ->whereIn('id', [1,2,3,4,5]) //assuming "id" is the primary key for the table
            ->where('status','p')
            ->paginate(7);