/**
  * Remove the specified resource from storage.
  *
  * @param  int $id
  *
  * @return String Json
  */
 public function destroy($id)
 {
     if (!User::find($id)) {
         throw new ResourceNotFoundException();
     }
     User::destroy($id);
     return $id;
 }