public function delete($id)
 {
     $apikeys = ApiKeys::find($id);
     $apikeys->delete();
     return redirect()->intended('clients');
 }