/**
  * Show the application dashboard.
  *
  * @return Response
  */
 public function index()
 {
     $intelligences = Intelligence::all();
     return view('home', compact('intelligences'));
 }