How can I return a view and display it through the controller in AdonisJs
'use strict'
class PostController {
index(){
return view.render('welcome')
}
}
module.exports = PostController
report this error:
ReferenceError
view is not defined