/**
  * Display a listing of the resource.
  * GET /admin\article
  *
  * @return Response
  */
 public function index()
 {
     View::share('title', 'Hírek');
     $this->layout->content = View::make('admin.article.index')->with('articles', Article::all(['id', 'author_id', 'title', 'created_at']));
 }