/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $articles = Article::orderBy('id', 'desc')->get();
     return view('admin.contents.blog.article.index')->with('articles', $articles);
 }