With laravel 7, can you still send an axios request, the way you did:
axios.post(this.baseUrl+"/api/posts/"+this.post.id+"/comment",{
api_token: this.user.api_token,
body: this.comment
})
Cause when I console.log user, there isn't an API token, or do I have to start using passport?