/**
  * Returns a view with all the supporters
  *
  * @return Response
  */
 public function thankYou()
 {
     return View::make('thank_you')->with(['supporters' => Supporter::all()]);
 }