findAllPublishedPaginated() public method

Paginate all published blogs.
public findAllPublishedPaginated ( $perPage = 10 ) : Illuminate\Contracts\Pagination\LengthAwarePaginator
return Illuminate\Contracts\Pagination\LengthAwarePaginator
Exemplo n.º 1
0
 /**
  * Get all published blogs.
  *
  * /blogs get
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $blogs = $this->blogs->findAllPublishedPaginated(10);
     return view('blogs.index', compact('blogs'));
 }