can you make a video for passing data from laravel blade to vue component i want to make a search function like ?search=testProduct but i dont know how to do it
I’m new to Vue. Why wouldn’t you put the code for loading categories and products in those Vue component files? Wouldn’t that make everything more encapsulated?
Can you make a new video showing how to create a laravel application with vuejs on the front end and using blade as the admin panel? (Basically I can't find how to use vue in some pages and blade is some. Thanks)
should you mix blade and vue ? meaning.. if you are building a regular app but also want to add ajax calls or something, or would you use jquery in that case ?
Yes, and it works pretty well, I'm working in a project that the simple components are made in blade and more complex components that needs javascript using Vue.js. Components like table of children items(master details), select option or insert, etc... In my experience, Vue let the things more easy, fast to do and organized, with Vue data bind, template (loop, conditional, etc), you don't need to worry with select a tag put value, write html as string and put inside tag, sometimes you have a confuse code... And you can have visual componets without using ajax, in this project I'm not using ajax (just in some cases like load options of a select dynamically that depends of another select, for example...), I just put de Vue componentes inside blade, and the job of the component is basically to manipulate the needed inputs to send inside the form.
Hey I was working with Vue js found out that another framework nuxt js is a framework built on top of Vue js. How can I add an existing nuxt js project to laravel? Would be great if you make a video on it.
@@PovilasKorop ok can you make a video on Vue js SSR? The problem is that my project is actually more than halfway complete and now I need to somehow allow seo for the project. Mine is an SPA so... It's not good for SEO. Can you help me with this situation?
@@devendergupta_official Same response, I haven't personally worked with SSR, only with SPA projects. Something to learn in the future, when/if I do - will definitely shoot a video.
@@PovilasKorop thanks, bro. I started this 1/2 months ago. Now I'm busy with other projects or else I would have figured it out myself. There is a github link where we can do so. I dint get the time to check it thoroughly. Here is the link anyways : github.com/m2sd/nuxt-laravel github.com/cretueusebiu/laravel-nuxt
@@SilverWave64 Sorry I won't understand without screenshot/screencast. Anyway, full code is available here: github.com/LaravelDaily/Laravel-Vue-Shop-Catalog
Hi, the answer is "it depends". There are various studies on how exactly Google bot crawls the page and what is the result index. Generally, if the content from API still loads FAST (within half-second for the whole page), it's all ok. So you need to focus on the optimization of your API calls and speed. Read articles like these: www.smashingmagazine.com/2019/05/vue-js-seo-reactive-websites-search-engines-bots/ Another trend is so-called SSR (server-side rendering) with different frameworks like Nuxt.js. Finally, more difficult SPAs are more usable for internal applications (not public websites) where users are logged in and then load some data, so those don't really care about SEO at all.
For this amount of products, and this simple page, there won't be much difference, in my test both cases finished in developer tools in 0.9 second. More realistic test would be with real e-shop, with many more design elements and thousands of products.
i liked without watching the video coz i know this is gonna be awesome one
thank you so much sir for sharing your knowledge, it really helps me learning Laravel
can you make a video for passing data from laravel blade to vue component
i want to make a search function like ?search=testProduct
but i dont know how to do it
Is it a good practice to have all component register globally ? if not , how can you register vue component locally ??? Cant find an answer anywhere 🤔
Which is better to learn in laravel, LiveWire or React?
I’m new to Vue. Why wouldn’t you put the code for loading categories and products in those Vue component files? Wouldn’t that make everything more encapsulated?
Can you make a new video showing how to create a laravel application with vuejs on the front end and using blade as the admin panel? (Basically I can't find how to use vue in some pages and blade is some. Thanks)
Can everyone see those's API's? I work with an app different users and not all data may be seen by everyone.
hello, i’m new using laravel..
what the best benefit using both of them?
thank’s..
Can you make toutrial for PKCE passport spa update
should you mix blade and vue ? meaning.. if you are building a regular app but also want to add ajax calls or something, or would you use jquery in that case ?
For that, both can work. It's perfectly fine to replace jquery with vue, if you're more comfortable with it.
@@PovilasKorop
Hi sir ,do you think its worth to combine blade.php and vue js? if its yes so when and why i need it?
Best Regards
Yes, and it works pretty well, I'm working in a project that the simple components are made in blade and more complex components that needs javascript using Vue.js. Components like table of children items(master details), select option or insert, etc... In my experience, Vue let the things more easy, fast to do and organized, with Vue data bind, template (loop, conditional, etc), you don't need to worry with select a tag put value, write html as string and put inside tag, sometimes you have a confuse code... And you can have visual componets without using ajax, in this project I'm not using ajax (just in some cases like load options of a select dynamically that depends of another select, for example...), I just put de Vue componentes inside blade, and the job of the component is basically to manipulate the needed inputs to send inside the form.
5 stars as usual .... thank you
Let me welcome your VUE.JS series. I am assuming that now tips about vue are coming by Laravel Daily. Respect from Pakistan.
Hey I was working with Vue js found out that another framework nuxt js is a framework built on top of Vue js.
How can I add an existing nuxt js project to laravel? Would be great if you make a video on it.
I haven't worked with Nuxt so unfortunately can't make a video about it.
@@PovilasKorop ok can you make a video on Vue js SSR?
The problem is that my project is actually more than halfway complete and now I need to somehow allow seo for the project. Mine is an SPA so... It's not good for SEO. Can you help me with this situation?
@@devendergupta_official Same response, I haven't personally worked with SSR, only with SPA projects. Something to learn in the future, when/if I do - will definitely shoot a video.
@@PovilasKorop thanks, bro. I started this 1/2 months ago. Now I'm busy with other projects or else I would have figured it out myself. There is a github link where we can do so. I dint get the time to check it thoroughly. Here is the link anyways : github.com/m2sd/nuxt-laravel
github.com/cretueusebiu/laravel-nuxt
How do you make this fancy loading animation?
What exactly fancy animation you mean?
@Povilas Korop The one when you reload the page made with vue.
@@SilverWave64 Sorry I won't understand without screenshot/screencast. Anyway, full code is available here: github.com/LaravelDaily/Laravel-Vue-Shop-Catalog
Love it! The speed of first paint benefit is great... but isn't the SEO going to take a hit with Vue?
Hi, the answer is "it depends". There are various studies on how exactly Google bot crawls the page and what is the result index. Generally, if the content from API still loads FAST (within half-second for the whole page), it's all ok. So you need to focus on the optimization of your API calls and speed. Read articles like these: www.smashingmagazine.com/2019/05/vue-js-seo-reactive-websites-search-engines-bots/
Another trend is so-called SSR (server-side rendering) with different frameworks like Nuxt.js.
Finally, more difficult SPAs are more usable for internal applications (not public websites) where users are logged in and then load some data, so those don't really care about SEO at all.
@@PovilasKorop That makes perfect sense! I really appreciate the help. Thanks.
You don't need SEO to Product catalog, SEO working to Product detail.
SEO only for detail, news, about, just it
I love you man!!
thank's a lot very helpfull
Can you show us the difference in loading time and an audit in developers tools?!
For this amount of products, and this simple page, there won't be much difference, in my test both cases finished in developer tools in 0.9 second. More realistic test would be with real e-shop, with many more design elements and thousands of products.
Great content.
thank you.
guess i have to refactor my codes to vue js.