The best of the best websocket tutorials on the internet so far, thank you for helping me understand all the fundamentals of complex topic like websocket. Before, I thought websocket was the hardest thing in the world, I couldn't understand it. Now I find that applying it to my project is extremely easy after watching all your series. Please continue to make more tutorials on complicated topics like this, it will help many less intelligent and slow understanding developers like me a lot.
@zabihullahsirat97312 жыл бұрын
I had downloaded these videos but intentionally navigate to your KZbin channel to subscribe you for ever and give you my honor to such a useful tutorial .
@UTravis2 жыл бұрын
I can't tell you how helpful these sets of lessons on WebSockets have been to me
@lolasandrareen50262 жыл бұрын
I learnt more than a lot from this tut, now I don't have to disturb myself about learning NodeJs
@ΤΟΝΙΑΧΡΙΣΤΙΔΟΥ3 жыл бұрын
Bro why did you stop making these videos ? You were a very good teacher you had your way eplaining complex concepts making them simple !
@hoseahkiplangat4 жыл бұрын
Had headache trying to implement this BUT your tutorial is all I ever needed to solve this. Thanks for this tutorial
@burnt34363 жыл бұрын
Awesome tutorial. You're such a good teacher. Other tutorials i found just zoom past everything and not explaining (or give very little explanation) why they did it.
@PildorasMusicales4 жыл бұрын
Excellent! Congratulations, awesome tutorial. I like how you make pauses before making decisions and taking your time to explain other multiple possible decisions. Thank you!
@jashanpreet8323 жыл бұрын
One of the best video for web sockets
@РоманСуворов-е8д5 жыл бұрын
30:50 "haay, you are listening port 10" just made my day!! Thanks for the tutorial!
@mrparadox96834 жыл бұрын
You don't make things difficult, this is a good job!
@VadimBesedin Жыл бұрын
To broadcast an event you can use either "event(new TestEvent('Hi'))" or "broadcast(new TestEvent('Hi'))": • Use broadcast() when you explicitly want to send information to the client side and you don't have any local event listeners to trigger. • Use event() when you also have some local handlers that should catch the event, or when you have implemented queuing and you want the event to be queued.
@PardeepKumar-hv7vf6 жыл бұрын
This thing is so awesome i love that way you teach ......Thank You!........
@ciprianserban4 жыл бұрын
Great teacher 👨🏫
@kotnikd36 жыл бұрын
It didnt work for me. After I changed in the following files, it started working: - broadcasting.php: 'encrypted': false - if you used 'broadcastAs() { return "NewComment"; }' method, you should change in show.blade.php: .listen('.NewComment'). Check the Laravel documentation about that dot.
@BoolFalse5 жыл бұрын
Hey man, thanks for sharing your results.. You're really helped me to find the reason immediately ;) I've checked this case on L5.8 (for custom channel names via broadcastAs() method), and found this: 1. don't need to disable encryption from 'config/broadcasting.php/pusher.options.encrypted', and can just use as 'encrypted => true' 2. recommended to have channel names without any dashes symbols (only alphabetical characters) 3. in blade need to start with "." (dot) symbol for custom broadcast channel names only
@maherylala2153 Жыл бұрын
Pretty complete and helpful ! Nice work
@gameplaywithbilal5 жыл бұрын
Thanks a lot sir you are doing great Love and Respect From Pakistan
@petiibhuzah9086 жыл бұрын
your the best keep posting i do appreciate your work
@pashamaggot6 жыл бұрын
Thanks man ! That's actually what I was looking for. Waiting for next videos !
@sigeldesu4 жыл бұрын
Hi! I'm making a queue management system. Can I use this function to display or broadcast the called queue on the display? IF yes, Can I do it with notification sound that a queue has been called?
@librasulus3 жыл бұрын
Great series, thank you for helping me clear things in my head.
@Jimu42834 жыл бұрын
You have done so much you deserve ur skills
@futbolclipsfast4 жыл бұрын
Amazing, thanks for explained so well, you are the best
@hamzanouali60516 жыл бұрын
i love you man
@estousemcriatividadepraumnome5 жыл бұрын
what should be used for the mission critical functionalities?
@onakoyakorede6 жыл бұрын
Thanks Alex for keeping to your word... really appreciate it?
@davidespigolon81706 жыл бұрын
Can you build an ecommerce in laravel?
@lolsamcute6 жыл бұрын
Yes very well
@isisoakjsjsjsjs96665 жыл бұрын
Hello! Weitten tuturoal does not have vadil links.
@SaywanGanji2 жыл бұрын
Great tutorial
@xploitguardian3 жыл бұрын
Hi, I have a question. Why is that everytime I refresh the page assigned value coming from the event is gone? Or whenever a user go to another page, a variable holding the value from the event fired is gone. What could be the problem? I am using laravel and vue. Thank you!
@diyang38453 жыл бұрын
AWESOME! Thanks, Could you please submit about Custom event handler on laravel websocket also?
@steveskye59894 жыл бұрын
Thanks for the great video !
@ojdgaf6 жыл бұрын
so simple and painless, thanks!
@allawitte86815 жыл бұрын
You are awesom! Can we expect continuation of Websockets in Laravel
@kvpfear5 жыл бұрын
You're awesome!Thank you so much!
@certificationcaci64693 жыл бұрын
great job, we appreciate it
@avinashdawane8976Ай бұрын
really helpful lactures
@FawzyTat5 жыл бұрын
That was amazing and very helpful , Thank you :)
@tokomeno95336 жыл бұрын
thank you so much for great videos what you are doing for us
@misc97004 жыл бұрын
It worked for me by changing $comment->post->id to $this->comment->post->id at min 16:45
@yonann78995 жыл бұрын
Hi, Do have any video that make silent print to printer?
@dafloca20024 жыл бұрын
Amazing tutorial! congrats and thank you, really hepls a lot.
@playonmob70605 жыл бұрын
What you are doing with the event can be done also with observer ?
@surajnirala90726 жыл бұрын
thanks for teach us.. your videos always good
@mohamedmanas30553 жыл бұрын
this is awesome!! Thanks mate! :)
@cufs-xq2gj6 жыл бұрын
please continue with advanced blog/cms
@Shaharcutenum64 жыл бұрын
The best. Can't say much but Thanks!
@LearnphpPhpforbeginners3 жыл бұрын
Failed to connect pusher on server . How will I solve this
@kajmnietegomakowca19003 жыл бұрын
If you are using broadcastAs() you need to prepend '.' in listen function before channel name. For example if you specified "my-event" in Event->broadcastAs() then in laravel-echo "listen('.my-event")". That's because events are namespaced. Example 2, this is how laravel-echo sees you event without the dot: "App.Eventsmy-event", and with the dot: "App.Events.my-event"
@onlineenergy71516 жыл бұрын
Awesome Sir. . . . . Amazing Nice Work It
@anwarhamoude26375 жыл бұрын
Thanks for the tutorial.
@ashrafsaleh86545 жыл бұрын
excellent tutorial, thanks a lot
@Almarghulani5 жыл бұрын
Great tutorial!
@NovinyoAMEGADJE6 жыл бұрын
You are AWESOME!!!!!! Yeah
@techkumar38296 жыл бұрын
What Happened with the advanced blog cms with laravel series??
@JoseHernandez-ew2en5 жыл бұрын
Thanks, great video!!
@haseemxyt23756 жыл бұрын
Great tutorials 😊
@silasgameplaychannel33915 жыл бұрын
Hey, can anyone tell me about queues with pusher? Cant find information about them.
@rajithsam6 жыл бұрын
Really awesome!!
@surajnirala90726 жыл бұрын
can u make a video on laravel api docs generator
@moemengaballa3 жыл бұрын
thank you very much
@saeedakhshijan81596 жыл бұрын
thank you so so so much. you are more like teachers :D
@BeaconofHopeNetwork5 жыл бұрын
great video bang(!) happily subscribed bang(!)
@mohamedkaddouri53185 жыл бұрын
I don't know why?? when i open up a incognito window and log the user in and type a comment for a blog and i press save comment. the author of the comment get's to see it but the other doesn't. anybody any idea?
@irfanakram6 жыл бұрын
I am learning vue.js with laravel, what i can do? I am jr PHP developer. please help me.
@irfanullahshakir35685 жыл бұрын
Good tutorial
@heewungsong80816 жыл бұрын
Really helpful!!
@jebbush29646 жыл бұрын
Please teach us how to create full feature ecommere app in Laravel, with shipping classes and dashboard. THank you
@pedropeter27174 жыл бұрын
thanks a lot
@meseretkassaye85504 жыл бұрын
Hi,there Can you guide me how can i connect laravel event with reactJS. the reactJS app is in another folder not with blade help me please
@praisegodudeh69134 жыл бұрын
Hey man.. did you figure it out?
@nicolasromero61445 жыл бұрын
THANKZ
@mohsenmahoski66596 жыл бұрын
thanks man. I owe you
@blry6 жыл бұрын
Thanks man! Ur the best! :D
@mohammedrowad99836 жыл бұрын
Thank You
@paulmooney10924 жыл бұрын
Awesome on Laravel 6
@craigreeves54655 жыл бұрын
I just got Echo is not defined...
@brainenergy46636 жыл бұрын
Could you help please, when I submit comment I got this error: 500(Internal Server Error)
@farisdewantoro50696 жыл бұрын
me too
@roguez936 жыл бұрын
I have the same problem, Did you fixed ?
@brainenergy46636 жыл бұрын
Not yet
@roguez936 жыл бұрын
I found the solutions, its necessary to return data in a Array... it can be "return ['something']" or "return ['json' => 'something']"
@sravankumarsriramula68416 жыл бұрын
Attach the screenshot of your error.
@amardev22246 жыл бұрын
hello master this is last video ?
@ylberprapashtica22496 жыл бұрын
If i set 'encrypted' => false in broadcasting.php everything works fine, but if i set it to true, i get an 'error: 500(Internal Server Error)' any idea how to fix this?
@roguez936 жыл бұрын
I have the same problem, Did you fixed ?
@roguez936 жыл бұрын
I found the solution, its necessary to return data in a Array... it can be "return ['something']" or "return ['json' => 'something']"
@danielmquintero26915 жыл бұрын
@@roguez93 in broadcastWith() ?
@AhmedSaadGmail6 жыл бұрын
Thanks Bro,
@iaskakho5646 Жыл бұрын
Very good vid vue is a bit outdated
@midoriya11835 жыл бұрын
No written tutorial... Great tutorial by the way but voice make me so sleepy.
@the2worlds5 жыл бұрын
Omg he repeats every the explanation 20 times. I have to keep skipping forward. Just explain it once and move on.
@mdatiqurrahman25612 жыл бұрын
Hey, I really enjoyed this video a lot, learned so many stuff and make socket learning easier. 🤎