/**
  * Remove the specified pacote from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $evento = EventoEspecial::find($id);
     $evento->imagens()->delete();
     $evento->delete();
     return Redirect::to('admin/eventoespecial/')->with('success', array('Registro deletado.'));
 }