/**
  * Remove the specified resource from storage.
  *
  * @param  int $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     if ($result = check_auth_to('QXXX_DELETE')) {
         return $result;
     }
     try {
         Auth::destroy($id);
         return redirect()->action('Admin\\AuthController@index')->with('operationstatus', 'sucess');
     } catch (\Exception $e) {
         return redirect()->back()->withErrors(['error' => '删除权限信息失败,请重试(' . $e->getMessage() . ')']);
     }
 }