Level 50
example of doing that
$posts = Post::with(['owner', 'category'])->paginate(5);
$posts->withPath('students');
The withPath method allows you to customize the URI used by the paginator when generating links. you should pass students to the withPath method.