/**
  * Display a listing of the resource.
  * GET /emailhistories
  *
  * @return Response
  */
 public function index()
 {
     $email_histories = EmailHistory::all();
     return View::make('email_history.index', compact('email_histories'));
 }