/**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function index($slug = 'home')
 {
     $page = Page::getPage($slug);
     return view('home', ['page' => $page]);
 }