The title pretty much explains it, but i am looking to fire of a function every second.
I haven't tried anything, nor do i have much code that would be useful.
I have done some googling around and so far had n joy with any examples.
Also, i am using laravel 5.6
this doesn't work, for calling the countDown() method
export default {
ready() {
window.setInterval(() => {
this.countDown();
},1000);
},