Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created July 17, 2018 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diego3g/62d2023819c21123897fe1d1d3e7e212 to your computer and use it in GitHub Desktop.
Save diego3g/62d2023819c21123897fe1d1d3e7e212 to your computer and use it in GitHub Desktop.
async index ({ request }) {
const { latitude, longitude } = request.all()
const properties = Property.query()
.nearBy(latitude, longitude, 10)
.fetch()
return properties
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment