paginated() public method

public paginated ( )
Exemplo n.º 1
0
 /**
  * Display a listing of the Widgets.
  *
  * @return Response
  */
 public function index()
 {
     $result = $this->widgetsRepository->paginated();
     return view('quarx::modules.widgets.index')->with('widgets', $result)->with('pagination', $result->render());
 }