/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return view('AdminHome')->withPages(Page::paginate(7));
 }
Пример #2
0
 /**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function index()
 {
     return view('home')->withPages(Page::paginate(5));
 }