/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store($society, SpecialdaysRequest $request)
 {
     $special = Specialday::create($request->all());
     return Redirect::route('society.households.show', array($society, $special->household_id))->with('okmessage', 'New anniversary has been added');
 }