Esempio n. 1
0
 /**
  * Home Page.
  *
  * @return \Illuminate\View\View
  */
 public function home()
 {
     $works = PostsRepository::instance()->fetch(1, 30, ['*'], [], ['id' => 'DESC']);
     return view('frontend.pages.home', compact('works'));
 }
Esempio n. 2
0
 /**
  * Home Page.
  *
  * @return \Illuminate\View\View
  */
 public function home()
 {
     $works = PostsRepository::instance()->all();
     return view('frontend.pages.home', compact('works'));
 }