/**
  *
  *	Homepage
  */
 public function index()
 {
     $articles = Article::simplePaginate(5);
     return view('front-end.pages.index', compact('articles'));
 }