Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

adonis attach

const User = use('App/Models/User')
const Car = use('App/Models/Car')

const mercedes = await Car.findBy('reg_no', '39020103')
const user = await User.find(1)

await user.cars().attach([mercedes.id])
Source by adonisjs.com #
 
PREVIOUS NEXT
Tagged: #adonis #attach
ADD COMMENT
Topic
Name
9+9 =