{{ $posts->render() }}
or
{{ $posts->links() }}
The docs https://laravel.com/docs/5.4/pagination show ->links() but upgrade guide from 4.2->5.0 confuse me as it says replace ->links() with ->render()
What view logic will work efficiently for serving as large datasets pagination like Laracasts DSCUSSIONS which is not so much large but I can provide as a sample.

{{ $posts->render() }}
or
{{ $posts->links() }}
The docs https://laravel.com/docs/5.4/pagination show ->links() but upgrade guide from 4.2->5.0 confuse me as it says replace ->links() with ->render()
Please or to participate in this conversation.