Laravel and Vue - handler.call is not a function
please change
created() {
...
}
OR
created=() =>{
...
}
You wrote mounted() in the right way, but the created function definition is wrong. 1st brackets missing.
created: {
}
//change it to
created() {
}