public function getDeletar($id)
 {
     $postagem = Postagem::find($id);
     $postagem->delete();
     return Redirect::to('postagem');
 }