/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index(Article $article, User $user)
 {
     $articles = $article->paginate($this->count);
     return view('admin.articles.index', compact('articles', 'user'));
 }