Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created July 17, 2018 14:22
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/584a9e2be809ba9dcefc896b5a2b9648 to your computer and use it in GitHub Desktop.
Save diego3g/584a9e2be809ba9dcefc896b5a2b9648 to your computer and use it in GitHub Desktop.
async store ({ auth, request, response }) {
const { id } = auth.user
const data = request.only([
'title',
'address',
'latitude',
'longitude',
'price'
])
const property = await Property.create({ ...data, user_id: id })
return property
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment