At 1:03:20 you say " we didn't set that up yet, I'm gonna go back into the event file and set that up momentarily". However, we don't see you this in the video. I think you might have missed this part out in the recording and it maybe the cause of the issues I am having. Would greatly appreciate if you could look into this when you get the chance.
@scrypster3 жыл бұрын
A, you’re the first person to point this out after 4,000+ views. I didn’t rewatch the whole video, but I think you’re right and I may have edited this out somehow. 🤦🏻♂️ I apologize for the frustration this has probably caused! Check out this link: laravel.com/docs/8.x/broadcasting#broadcast-name On the frontend I am listening for a named broadcast event. You can customize the broadcast name inside of: /app/Events/NewChatMessage.php //add this line of code public function broadcastAs() { return ‘message.new’; }
@ramiro1743 жыл бұрын
@@scrypster or you can change your code window.Echo.private("chat."+this.currentRoom.id). listen('NewChatMessage',e=>{ vm.getMessages();
@ariffaysal94583 жыл бұрын
@@ramiro174 thanks, this works !
@rommelgaming37323 жыл бұрын
I have this error {"event":"pusher:error","data":{"code":4005,"message":"Path not found"}}. Can anyone help me please! Thank you
@rommelgaming37323 жыл бұрын
I downgraded my pusher to 6.0.3 and it works! cheers!
@josuebarros-desenvolvedorw24903 жыл бұрын
Laravel with Vue is a beast!! Thanks for the awesome tutorial!
@jaygrayson7949 Жыл бұрын
Amazing! I found this video when I started giving up on getting Laravel Echo to work with Pusher on Laravel 10, Vue 3 and Pusher. Nothing I was doing was working correctly and all of the examples that I had found were older Laravel, older Vue and older Pusher. While this video is using old versions as well, I was able to incorporate this into the newer versions and it finally worked! Thank you for the great explanations! This was one of the first videos that I have watched that I didn't have to multiply the speed also. :)
@GeorgeBrotherston3 жыл бұрын
Excellent tutorial, thank you! This really provides the overall connectivity of all the parts as well as the “behind the scenes reasons why it may be a “best practice”. I’ll use a few different pieces (eg self hosted web sockets, Inertia-recommended “manual visit shortcuts” and associated Inertia “returns/renders” for Laravel controllers), but without the benefit of your tutorial this would have been weeks to implement and possibly without the proper understanding of the whats and whys. I’ll skim through one more time and then watch again in detail while I follow along as I implement this in my environment. Thank you again!
@lozobojan3 жыл бұрын
Wow! What a great video. Explanations as they should be, not too long, not too short and the perfect video pace.
@scrypster3 жыл бұрын
Thank you!
@jimburns75493 жыл бұрын
Excellent work! Thank you. Suggestion: show finished work at the beginning to provide viewers a visual understanding of what you are building toward.
@scrypster3 жыл бұрын
Jim, Iike that idea! I have already pre-recorded a few videos that will be coming out soon... However, I think I’ll do that for the next recording. Thanks for the feedback!
@rafaelmaghari80333 жыл бұрын
Thank you for this tut! This is the most updated video related to vuejs, laravel pusher + chat. I just encountered two problems while following your tutorial. 1. add broadcastAs in NewChatMessage Event public function broadcastAs() { return 'message.new'; } 2. Don't forget to implement the ShouldBroadcast in NewMessageEvent. Appreciate you man! New subscriber here :)
@johnjohn8722 Жыл бұрын
thnaks mate haha like i just follow the instruction but still didnt get update the real time chat, now i know
@asifm35203 жыл бұрын
Pretty amazing explanation. After Laracast I found your tutorial as best resource. Keep doing your best.
@scrypster3 жыл бұрын
Thank you! I’ll do my best to keep making more content ❤️
@kvazaios50263 жыл бұрын
No Words. You are just amazing
@toyly28202 жыл бұрын
It is great, I watched it from start to end and stayed satisfied. Thank you.
@toyly2820 Жыл бұрын
Well i came back to say that this tutorial is completely wrong. You don’t listen to chatroom when you enter the chat. You listen to any broadcast information to user and depending on what event is that, you do the work with info. You should broadcast to channel User{user_id} a message, then you can use it as notification pop up when user is not in chatroom and use it as a message when user in chatroom and also other any broadcasting info can go through that channel because it is universal. You limit it too much making it only available in chatroom and naming channel chat{chat_id}. Thanks.
@luisalonsobr3 жыл бұрын
Git repository: github.com/luisalonsobr/laravel-spa-chatrooms corrected from github.com/edtrade/laravel-spa-chatrooms
@bytebandit_0x013 жыл бұрын
thanks for the tutorial it was a huge help, the best chat tutorial with laravel, vue and pusher on youtube
@tahzidmahmud82073 жыл бұрын
you are awesome man ...one of the best contents i have ever seen on laravel...keep them coming
@scrypster3 жыл бұрын
Thank you!
@Soulaimaneyh2 жыл бұрын
If you face a problem in live chat: 1:03:20 put the event name inside .listen ("NewChatMessage")
@juanjose50802 жыл бұрын
thanks!!!
@zzzzüp Жыл бұрын
Wow, spaces before and after function arguments
@elmomahupil3 жыл бұрын
THANKYOU VERY MUCH. PLEASE CONTINUE DOING MORE VIDEOS LIKE THIS. IT REALLY MEANS A LOT
@scrypster3 жыл бұрын
Thank you!
@elmomahupil3 жыл бұрын
@@scrypster You're a legend in the making sir
@thefrey95883 жыл бұрын
Hey. Thanks for the video. Out of curiosity, which one do you think would be easier to maintain (and to use frameworks like Vuetify with): Laravel with Vue integrated to it or separate Laravel and Vue projects to use as backend and frontend respectively.
@scrypster3 жыл бұрын
Prior to Sanctum, I’d say keep it all together. But the purpose of sanctum is to allow SPAs (single page applications) to live in a separate space. So you could completely separate your Vue project on a different server from your Laravel project. As long as you put them on the same root domain you could place Vue and Laravel on separate subdomains without any security/auth problems. I haven’t been able to complete enough projects with Sanctum YET... but I do like the direction they are going.
@softwareEngineerKunwar3 жыл бұрын
Hello thanks for the nice tutorial video and just wondering why are you using Tailwind CSS instead of bootstrap?
@scrypster3 жыл бұрын
Good question! By default, Laravel 8 comes with Tailwind CSS. So I just struck with the default CSS after creating my new Laravel project. Thanks for watching.
@pwhak3 жыл бұрын
It's nice to see someone using MAMP for Laravel development. Have you come across any issues with choosing MAMP over Docker or Homestead?
@scrypster3 жыл бұрын
TBH. I kinda like it. But I feel like I’m cheating. Haha. Homestead was slow. Docker was cool until I got the new Mac M1 chip. Then I had some weird stuff going on. But MAMP just works without issue. I also just like to switch things up for fun sometimes but MAMP is my failsafe.
@pwhak3 жыл бұрын
@@scrypster Thanks for the reply! I'd just started learning Laravel last week and played around with Docker and then Homestead. Then I thought, can't I just use MAMP for this? Then I came across your videos and concluded that if it's good enough for Scrypster then it's good enough for me. :) Thanks for the videos!
@MohamedTarek-by3et Жыл бұрын
A big thanks, an amziang turorial👏
@gluckgamer3 жыл бұрын
Awesome video and explanation. Thank you!
@scrypster3 жыл бұрын
Thank you!
@strangersman86233 жыл бұрын
yes Awesome video and explanation
@edersonpalma34693 жыл бұрын
Awesome!! Question, if I separate the front completely from the laravel using the route Api, will works too?
@scrypster3 жыл бұрын
It should work fine. You’ll just need to make sure the authentication works with your API routes. You may need to provide Axios some authentication info to pass with your request.
@hedgefund99993 жыл бұрын
everyone gangsta till pusher section came
@kvazaios50263 жыл бұрын
Nice vid. Do you know if we are able to use Pusher & Laravel Echo when our frontend is in a different repo of our backend api? Like I was reading some articles yesterday and I was really confused about how this would work
@dan232333 жыл бұрын
Laravel + Vue is awesome ❤️❤️❤️
@zicada76613 жыл бұрын
Shouldn't chatmessage use belongsTo and not hasOne ?
@elDiegoPR883 жыл бұрын
Hello, first of al.. amazing video it really helped me get the chat up and running but I am having one problem, the connect() method kind of enters an infinite loop so it is constantly getting all new messages and that takes up a lot of resources after a while, I don't know if that constant message update should happen or if I did something wrong... I hope you can reply Thank you, im subscribed now
@scrypster3 жыл бұрын
It’s really hard to diagnose without seeing the errors in the console and what’s causing the infinite loop. If you post your source code to a GitHub repo I can take a look.
@elDiegoPR883 жыл бұрын
@@scrypster Actually I solved it already, the problem I guess was that I had already some components with vue and I just implemented the channels and events logic, but I changed most of my components to make it look like yours and now it works perfectly, thanks man cheers
@rebekasojka86463 жыл бұрын
u for real saved me. thank u so much
@badralwattar57993 жыл бұрын
in minute 12:04, why didn't you use belongsTo instead of hasOne ?
@Shatic2 жыл бұрын
Great tutorial, thank you!
@samuelpradhan18993 жыл бұрын
Thanks for this wonderful tutorial 😊😊😊
@davidescobedo61859 ай бұрын
Hello there. I developed my chat using your tutorial, but my vue is in different folder than my laravel. Can you explain how to configure vue in the correct way? Thanks a lot for this video.
@DwayneLeroice3 жыл бұрын
Do you mind sharing why you selected Pusher over Firebase's Realtime DB?
@scrypster3 жыл бұрын
There are so many ways to accomplish real-time functionality, it's just what I'm more comfortable using. I could have used Socket.io as well, but I just have more experience using Pusher. I have some experience with Firebase, but I have only used it for push notifications with PWA's and mobile apps (pusher can do this as well). Firebase is definitely an awesome tool though!
@mathiasmuniz84532 жыл бұрын
Amazing tutorial, man, thank you very much! The only thing I couldn't manage to get right were that the dropdown showing the channel names and the outline border in the input message box. I don't know why, but the dropdown menu doesn't stay in the same line as the chat room title, and the input message box still has a black outline. Thanks!
@adante4073 жыл бұрын
Just found your Channel, subbed. Great content 👍 Are you going to be doing any more Vue Laravel in the near future?
@scrypster3 жыл бұрын
Thank you! I plan on it. Feel free to send any suggestions for video topics and ideas.
@REZAsys22 жыл бұрын
You're the best!
@acebishbi3 жыл бұрын
I got this error, which I can't figure how to fix when I am following your tutorial.
@jermainecogo34342 жыл бұрын
what extension in vscode are you using I cant automatically import Input from Input.vue
@edunwa36793 жыл бұрын
Great tutorial, thank you. However, if anyone at this time your chat app is running on current Laravel and PHP version, and you are having issue with new message not reflect on other browser without refreshing browser? just restart your local server so that app will recognize changes done at the .env file.
@kusumapau88832 жыл бұрын
It works great for me but for some reason when i type a message, the other person could see the message being typed which is odd. Is it perhaps due to my PrivateChannel not properly set up?
@hyiping59263 жыл бұрын
Ive watched quite a bit of the tutorial already but i am a bit confused, is this using ajax or sockets? can I use this to display lets say a list of items for sale and if the prices change in the database the user will see the price change immediately ? and how efficient is this?
@chakerkhachlek68033 жыл бұрын
Hi thank you for the video ! but i have a problem that after setting room changing event with pusher(it works) the message sending is returning a 500 internal error , the save passes but no refresh in messages and the error appear .
@scrypster3 жыл бұрын
Can you post to a GitHub repo? I can check it out and see what the issue is. Give me a day or 2 because I’m currently traveling. But I brought my laptop with me 👍
@chakerkhachlek68033 жыл бұрын
@@scrypster github.com/ChakerKhachlek/LiveChatApp here ! if i just take off the broadcasting event caller from the controller the post route doesn't call the error anymore but of corse i need that ! and thank you
@ΤΟΝΙΑΧΡΙΣΤΙΔΟΥ3 жыл бұрын
@@chakerkhachlek6803 i got the same error did you solved that?
@chakerkhachlek68033 жыл бұрын
No same issue
@pro-user2553 жыл бұрын
@@scrypster having same issue
@enelgy47143 жыл бұрын
What about adding features, like deleting messages, muting users if is someone admin and so on ? I would Appreciate so much !
@nilpo2 жыл бұрын
It's a tutorial, not a completed project. That's for you to add and make it your own!
@hatsikmaroukian41113 жыл бұрын
Greetings Scypster, I have to say, works perfectly and it is amazing, but i cant understand how pushed helps us with the whole system. Sorry if it is too noob of a question but we need to start from somewhere :)
@glennrudge91643 жыл бұрын
Thank you for another great course on Laravel. Currently having an issue with the sendMessage function. When I click the button I get " Cannot read property 'id' of undefined". Any help would be greatly appriciated.
@alialaa6503 жыл бұрын
I have the same problem How was the problem solved? Cannot read property 'id' of undefined".
@glennrudge91643 жыл бұрын
@@alialaa650 I had it working, then it just stopped lol --__--
@glennrudge91643 жыл бұрын
@@alialaa650 I haven't found the error yet but I think it has to do with currentRoom, if you go to the container component, try to make sure it isn't coming back undefined.
@glennrudge91643 жыл бұрын
@@alialaa650 I fixed it. Turns out it was a problem with cache and also check your newMessage method, make sure the properties are right. happy coding.
@alialaa6503 жыл бұрын
@@glennrudge9164 thank you
@personal1872 Жыл бұрын
hey there, is there any way to send message to laravel beyondcode/websockets from python app like flask, django, fastapi, if yes then how ?
@techieteacher46093 жыл бұрын
Great job, thanks
@kielbermudez84744 ай бұрын
why do I have to reload another browser for the message to render but I'm connected to the pusher?
@josuebarros-desenvolvedorw24903 жыл бұрын
Is it easy or hard to replace with Laravel Websockets? Do I need Laravel Echo for Laravel Websockets?
@lukamugosa9113 жыл бұрын
I must say this - VSCODE IS NOT AN IDE ! But a great tutorial tnx :D
@khanalpride3 жыл бұрын
Everything looks good. But why are you not using the message received from echo event and push the new message to the array, rather you are just sending axios request to server and fetching all messages again. That's not efficient.
@hatsikmaroukian41113 жыл бұрын
Around at @50:18 you might get a black-like dropdown list. Thats because you need to pass in props the value 'room' in chatRoomSelection.
@islamosama14713 жыл бұрын
Awesome !! Thank You
@WalterAraujoHN2 жыл бұрын
This can work with WhastApp Cloud Api?
@marianl80922 жыл бұрын
is this application raspbian-compatible?
@zensabbah3 жыл бұрын
Hi bro! Nice job! Is there the repo on Git?
@scrypster3 жыл бұрын
Sorry, no repo for this one. In the past I haven’t posted any code because I think it’s important for the learning process to actually write it out. I never learn anything by cloning a repo. But I MIGHT post to GitHub for future videos just to provide something to compare against.
@zensabbah3 жыл бұрын
@@scrypster Yes, you're totally right! Thanks again for the tutorial!
@javiervillatoro97253 жыл бұрын
I did all the video, but when doing the test from two different browsers it doesn't work, in network tab, in the request to websocket, if the new message is reflected, when sending from the other browser, but the method that refreshes the messages in the DOM is not executed. HELP :(
@scrypster3 жыл бұрын
I’m not sure I follow. Can you post to a GitHub repo and I’ll take a look?
@Lombarzilor83 жыл бұрын
@@scrypster Same for me.Do you think there are a lot of changes because of the newer version of php and pusher I used ? Php 7.4 and pusher 4.1.5 github.com/adicrainic/chatappLaravel.git
@alighasempoor27473 жыл бұрын
@@Lombarzilor8 tanx man
3 жыл бұрын
Same for me.
@gianlucatiengo73063 жыл бұрын
I have problem when i try to switch room, the axios fetch give me the structure of the object with the related chat room but they are empty any idea? if i do console.log(response) all the structure of object came out but empty.... thank you!
@ramiro1743 жыл бұрын
the relationship in ChatMessage class with room is belongsTo?
@malikkhan66802 жыл бұрын
if am using livewire instead of inertia then what to do? and other thing is the files which are in JS folder from where to get those files?
@TrainYourDragon9992 жыл бұрын
the url occured an error chat_room_id not found , please help
@اصيلعدنان-ح3ط2 жыл бұрын
I did everything correctly, but there is an error showing 204 Please help me
@MorganLee19973 жыл бұрын
Waita minute, does this work with Vue 3.0?
@hedgefund99993 жыл бұрын
i dont think so
@marianl80922 жыл бұрын
hello, having the packages you suggest until 5:00 why does my login/register page not have the same look as yours? there is a really big laravel logo in black and white and the field for input as well as the buttons are plain html
@marianl80922 жыл бұрын
i got it now, seems kinda flaky tho.
@marianl80922 жыл бұрын
yet i dont get a page when i get to chat.. might be some vite / mix confusion. Why do packages have to change that often?
@marianl80922 жыл бұрын
solved that as well, its nice to have the ability of debugging with f12
@nethertale21483 жыл бұрын
in web.php i get this error: undefined type 'Inertia\Inertia. What can i do to fix this? can't find anything on stackoverflow as well on this. i get this error on lines like: return Inertia::render('Dashboard');
@ahmadraid42143 жыл бұрын
I'm having a problem my friends When I create a folder in Pages file it is not recognized It only recognizes previously downloaded files JetStream Inertai
@mohamadcheaib2 жыл бұрын
hello, Laravel gives me the error message "Laravel curl error 60: ssl certificate problem ..." when broadcasting the event after creating a message, how can we solve it (i am using Laravel server )
@pinkshortcomedyАй бұрын
I couldnt even get past "php artisan migrate", it keeps giving me a PDO error no matter what I do even though I created the database in MySQL client and do have mysqli and pdo_mysql extensions in my php.ini. What can be done? I'm sure this would be a great tutorial if I could use it.
@bethk628719 күн бұрын
Enable the extension for it in your php.ini
@skyzopip3 жыл бұрын
I thought I could get to the end without making any mistakes but i've miscalculated xD. My chat doesn't show new messages from other users until i change the channel or send a message. I think this line doesn't work in my case window.Echo.private('chat.' + this.currentRoom.id ).listen('.message.new', e => { vm.getMessages(); }); and it's not listening to 'message.new'. Ofcourse i added public function broadcastAs() { return ‘message.new’; } to NewChatMessage.php, any tips how to fix that?
@skyzopip3 жыл бұрын
Nvm i found out just after i wrote this that i didn't implement ShouldBroadCast in NewChatMessage.php
@haseebmehar3360 Жыл бұрын
Hi, sir, I am facing an error, please guide me on how to resolve this. In the container.vue file the method function getRooms not define in created functions. (Uncaught (in promise) TypeError: this.getRooms is not a function)
@labka74452 жыл бұрын
THANK YOU VERY MUCH.
@AanyaFaith Жыл бұрын
iam facing a problem with here /chat/room we have those routes are not working getting internal error
@Dabayare3 жыл бұрын
What happened to the "Here is one I cooked earlier and how it looks and interacts"?
@gianlucatiengo73063 жыл бұрын
Witch vs extension to auto - import componets ?
@scrypster3 жыл бұрын
I don’t remember what it was. I honestly didn’t like it. Just something I was trying out. It didn’t format correctly and on occasion it would import at the wrong place in my file. Now that you mention it, I gotta figure out one which is was so I can remove it.
@jimburns75493 жыл бұрын
To be certain are sent messages visible to all other users at /chat?
@scrypster3 жыл бұрын
Correct. All messages are visible to all users in this example. In one-to-one chat apps I typically have a chat_room_permissions table where I will store which users can access a specific roomId. Then when I create the broadcast channel I will pull the chat_room_permissions rows matching that specific roomId to confirm users are listed as authorized users. Otherwise they won’t have access to that private channel. In this example I just confirm they are logged into the app. So any authenticated user has access to all rooms. Chat room permission is a bit more advanced and there is some strategy to setting this up if you wanted to allow additional users to be invited etc. Feel free to shoot me an email and I can provide additional details if needed. mj@scrypster.com
@edvis3336 ай бұрын
With laravel 11 cant find whats wrong with messages not updating in other browser. Only manual refresh updates the messages
@margaridapeixoto20784 ай бұрын
did you found the error? im with laravel11 too and also cant figure out this error
@oueghlanimaha82422 жыл бұрын
Excellent tutorial, I have succed to implement real time chat on localhost but when I deploy app on server it can't be work 😢 domain can not subdcribe to the channel so I cann't listen to it :( habe any other config for server side ? And thank you
@vanatruong939410 ай бұрын
please link github
@elmomahupil3 жыл бұрын
SHIIIIIIIIETT, THANKYOUUUUUUU
@eleazarfederio17183 жыл бұрын
can i use bootstrap with jetstream?
@scrypster3 жыл бұрын
You could... but jetstream is built with Tailwind CSS. So you’d be doing a whole lot of work to remove Tailwind and applying Bootstrap. I would just stick with Tailwind honestly. They both do the same thing. You’d just have to familiarize yourself with the Tailwind CSS.
@tranquangvu9515 Жыл бұрын
my npm run hot not working can you help me?
@doit49413 жыл бұрын
nice work 👍 thx
@arielacha67732 жыл бұрын
It would me very nice of you if you could link the repository of this application. :) Thank you for this
@PradeepSingh-hu3rh3 жыл бұрын
I'm not getting values in dropdown menu for rooms
@aashiq_hasnat3 жыл бұрын
Why not use Vuex?
@harmkraats Жыл бұрын
Im getting an error when I add the broadcast(new NewChatMessage($newMessage))->toOthers();. And when I comment that out, there is no error. But the page does not update on an new message
@harmkraats Жыл бұрын
After some digging I found an other error inside the /storage/logs/laravel.log I saw something with port. so I changed the pusher port to 80 inside the .env file. This did it for me!
@283518 Жыл бұрын
thanks this helped
@hsert293 жыл бұрын
I've set up everything like shown in the video, however, Chrome dev tools network tab is bringing back {"event":"pusher:error","data":{"code":4005,"message":"Path not found"}}. I have copied in the keys from pusher's website to my env file and I have also included the missing function to the NewChatMessage.php. I also have the implements ShouldBroadcast added too.. why am I getting this error?
@rommelgaming37323 жыл бұрын
I have same issue man. Hope anyone can help us.
@denisbogdanov6203 жыл бұрын
me 3
@kadambhushan2 жыл бұрын
I was facing the same error you can try: 1. composer require pusher/pusher-php-server 2. npm install --save laravel-echo pusher-js 3. clear the cache php artisan optimize This eeor ssee mostly faced because of pusher version
@ΤΟΝΙΑΧΡΙΣΤΙΔΟΥ3 жыл бұрын
I am getting 500 error when the controller calls the event any idea why?
@samarsamy11452 жыл бұрын
Thanks for your tutorial, but why i get this error {"event":"pusher:error","data":{"code":4009,"message":"Connection not authorized within timeout"}}
@kadambhushan2 жыл бұрын
I was facing the same error you can try: 1. composer require pusher/pusher-php-server 2. npm install --save laravel-echo pusher-js 3. clear the cache php artisan optimize This eeor ssee mostly faced because of pusher version
@samarsamy11452 жыл бұрын
@@kadambhushan i tried these commands you sent but i got error on pusher , in console log i get Disconnection
@nameLastname7862 жыл бұрын
❤
@dickhairy3322 жыл бұрын
It works however I only receive any new messages from others when I refresh the page which is very annoying. :((
@konzz91372 жыл бұрын
Same with mine, have you solved it?
@dickhairy3322 жыл бұрын
@@konzz9137 1:03:47 I changed .listen('.message.new') to same the name of Events file ".listen('NewChatMessage')" And it's worked.
@konzz91372 жыл бұрын
@@dickhairy332 Thanks a lot.
@ShivamSharma-lc3po3 жыл бұрын
When I inspect my code I did not get message route in network please help me
@jlemuelDev3 жыл бұрын
How to make this a one to one chat to users?
@AlexsanderFer902 жыл бұрын
I can't make work on 50:24 😭😭
@AfsarPervez2 жыл бұрын
make sure you have correctly bound your model and even in chatRoomSelection Vue as well as option value and key. Can you share your contaner and chatRoomSelection vue code?
@abdullaadnan63093 жыл бұрын
sir all the rest of things are success but I cant see chat history it show as blank ??
@abdullaadnan63093 жыл бұрын
can you share git repository of this code
@viciouswhitkid3 жыл бұрын
I dn. Cant recieve event "subscription". Only "pusher:connection_established"
@viciouswhitkid3 жыл бұрын
Solved. I just deleteed pusher app, and created a new one and thats all. Magic.
@yazidthedev42813 жыл бұрын
Why use vue, now there is livewire.
@scrypster3 жыл бұрын
Either will work for this. It really depends on whatever your preference is. To be honest, I’m really not a huge fan of Jetstream in general. But it is a very good quick and easy way to get going with authentication.