From the course: Extending Laravel with First Party Packages

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Live updating comments

Live updating comments

- [Instructor] Alright everybody, now we are to the last major project that we'll be working on. With Laravel Echo and Broadcasting. And that's to actually create the comments and live update them so that when someone submits a comment, it's visible to everyone else reading that post without doing a page refresh. We already got the other cool stuff, the presents, seeing who's in the room, and how many people are reading, which I think is already pretty cool enough, but we're also going to add live commenting on top of that. So in this video, what we're going to do is we're going to create a comments interface, which we don't actually have yet in our application. That's going to allow users to submit comments, which unfortunately just doesn't exist yet. We're actually going to be submitting them via Ajax so we are going to need to have API tokens for all of our users, so we can set up API authentication. And then we're gonna go through that process, and then we will get all of the…

Contents