Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function getIndex($type)
 {
     $articles = Article::group($type)->paginate(15);
     $nodes = \App\Node::top()->where('content_type', $type)->get();
     if (\Request::has('key')) {
         $key = \Request::input('key');
         $articles = Article::where('title', 'like', '%' . $key . '%')->paginate(15);
     }
     return view('admin.article.index', compact('articles', 'nodes'));
 }