M
M
Makfroy2017-03-07 11:27:24
Laravel
Makfroy, 2017-03-07 11:27:24

How to display the total number of posts during pagination?

Tell me how to display the number of records on the view in the users database?

public function index() {

 $users = User::paginate(5);
 return view('test', compact('users'))-> ... ;

    }

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander Pushkarev, 2017-03-07
@4Geka

{{ count($users) }}

A
Alexey Ukolov, 2017-03-07
@alexey-m-ukolov

Each paginator instance provides additional pagination information via the following methods:
...
https://laravel.com/docs/5.4/pagination#paginator-...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question