/**
  * Remove the specified resource from storage.
  *
  * @param  ApiKey $apikey
  * @return Response
  */
 public function destroy(ApiKey $apikey)
 {
     $apikey->delete();
     return redirect()->back()->withMessage("API Key deleted");
 }