/**
  * Remove the specified resource from storage.
  * DELETE /adminbuildings/{id}
  *
  * @param  int  $id
  * @return Response
  */
 public function delete($id)
 {
     Building::destroy($id);
     return Redirect::back();
 }