Beispiel #1
0
 /**
  * Display a listing of the Links.
  *
  * @return Response
  */
 public function index()
 {
     $result = $this->linksRepository->paginated();
     return view('quarx::modules.links.index')->with('links', $result)->with('pagination', $result->render());
 }