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 .
@peternguyen24233 жыл бұрын
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.
@UTravis2 жыл бұрын
I can't tell you how helpful these sets of lessons on WebSockets have been to me
@РоманСуворов-е8д5 жыл бұрын
30:50 "haay, you are listening port 10" just made my day!! Thanks for the tutorial!
@lolasandrareen50262 жыл бұрын
I learnt more than a lot from this tut, now I don't have to disturb myself about learning NodeJs
@jashanpreet8324 жыл бұрын
One of the best video for web sockets
@hoseahkiplangat4 жыл бұрын
Had headache trying to implement this BUT your tutorial is all I ever needed to solve this. Thanks for this tutorial
@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!
@maherylala2153 Жыл бұрын
Pretty complete and helpful ! Nice work
@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.
@ciprianserban4 жыл бұрын
Great teacher 👨🏫
@mrparadox96834 жыл бұрын
You don't make things difficult, this is a good job!
@JimAtsup4 жыл бұрын
You have done so much you deserve ur skills
@ΤΟΝΙΑΧΡΙΣΤΙΔΟΥ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 !
@PardeepKumar-hv7vf6 жыл бұрын
This thing is so awesome i love that way you teach ......Thank You!........
@librasulus3 жыл бұрын
Great series, thank you for helping me clear things in my head.
@pashamaggot6 жыл бұрын
Thanks man ! That's actually what I was looking for. Waiting for next videos !
@petiibhuzah9086 жыл бұрын
your the best keep posting i do appreciate your work
@SaywanGanji2 жыл бұрын
Great tutorial
@steveskye59894 жыл бұрын
Thanks for the great video !
@mohamedmanas30553 жыл бұрын
this is awesome!! Thanks mate! :)
@gameplaywithbilal5 жыл бұрын
Thanks a lot sir you are doing great Love and Respect From Pakistan
@certificationcaci64693 жыл бұрын
great job, we appreciate it
@hamzanouali60516 жыл бұрын
i love you man
@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.
@avinashdawane89762 ай бұрын
really helpful lactures
@estousemcriatividadepraumnome5 жыл бұрын
what should be used for the mission critical functionalities?
@futbolclipsfast4 жыл бұрын
Amazing, thanks for explained so well, you are the best
@allawitte86815 жыл бұрын
You are awesom! Can we expect continuation of Websockets in Laravel
@onakoyakorede6 жыл бұрын
Thanks Alex for keeping to your word... really appreciate it?
@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
@Shaharcutenum64 жыл бұрын
The best. Can't say much but Thanks!
@kvpfear5 жыл бұрын
You're awesome!Thank you so much!
@ojdgaf6 жыл бұрын
so simple and painless, thanks!
@isisoakjsjsjsjs96665 жыл бұрын
Hello! Weitten tuturoal does not have vadil links.
@FawzyTat6 жыл бұрын
That was amazing and very helpful , Thank you :)
@tokomeno95336 жыл бұрын
thank you so much for great videos what you are doing for us
@davidespigolon81706 жыл бұрын
Can you build an ecommerce in laravel?
@lolsamcute6 жыл бұрын
Yes very well
@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?
@surajnirala90726 жыл бұрын
thanks for teach us.. your videos always good
@dafloca20024 жыл бұрын
Amazing tutorial! congrats and thank you, really hepls a lot.
@diyang38454 жыл бұрын
AWESOME! Thanks, Could you please submit about Custom event handler on laravel websocket also?
@cufs-xq2gj6 жыл бұрын
please continue with advanced blog/cms
@Almarghulani5 жыл бұрын
Great tutorial!
@playonmob70605 жыл бұрын
What you are doing with the event can be done also with observer ?
@misc97004 жыл бұрын
It worked for me by changing $comment->post->id to $this->comment->post->id at min 16:45
@onlineenergy71516 жыл бұрын
Awesome Sir. . . . . Amazing Nice Work It
@haseemxyt23756 жыл бұрын
Great tutorials 😊
@ashrafsaleh86546 жыл бұрын
excellent tutorial, thanks a lot
@anwarhamoude26375 жыл бұрын
Thanks for the 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!
@surajnirala90726 жыл бұрын
can u make a video on laravel api docs generator
@LearnphpPhpforbeginners4 жыл бұрын
Failed to connect pusher on server . How will I solve this
@moemengaballa3 жыл бұрын
thank you very much
@rajithsam6 жыл бұрын
Really awesome!!
@BeaconofHopeNetwork5 жыл бұрын
great video bang(!) happily subscribed bang(!)
@techkumar38296 жыл бұрын
What Happened with the advanced blog cms with laravel series??
@saeedakhshijan81596 жыл бұрын
thank you so so so much. you are more like teachers :D
@irfanullahshakir35685 жыл бұрын
Good tutorial
@JoseHernandez-ew2en5 жыл бұрын
Thanks, great video!!
@yonann78996 жыл бұрын
Hi, Do have any video that make silent print to printer?
@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.
@NovinyoAMEGADJE6 жыл бұрын
You are AWESOME!!!!!! Yeah
@heewungsong80816 жыл бұрын
Really helpful!!
@blry6 жыл бұрын
Thanks man! Ur the best! :D
@silasgameplaychannel33915 жыл бұрын
Hey, can anyone tell me about queues with pusher? Cant find information about them.
@pedropeter27174 жыл бұрын
thanks a lot
@amardev22246 жыл бұрын
hello master this is last video ?
@craigreeves54656 жыл бұрын
I just got Echo is not defined...
@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?
@mohsenmahoski66596 жыл бұрын
thanks man. I owe you
@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?
@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']"
@danielmquintero26916 жыл бұрын
@@roguez93 in broadcastWith() ?
@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"
@mohammedrowad99836 жыл бұрын
Thank You
@jebbush29646 жыл бұрын
Please teach us how to create full feature ecommere app in Laravel, with shipping classes and dashboard. THank you
@paulmooney10924 жыл бұрын
Awesome on Laravel 6
@irfanakram6 жыл бұрын
I am learning vue.js with laravel, what i can do? I am jr PHP developer. please help me.
@nicolasromero61445 жыл бұрын
THANKZ
@iaskakho5646 Жыл бұрын
Very good vid vue is a bit outdated
@AhmedSaadGmail6 жыл бұрын
Thanks Bro,
@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.
@atiqurrahmanme2 жыл бұрын
Hey, I really enjoyed this video a lot, learned so many stuff and make socket learning easier. 🤎