Setting up VS Code for streamlined Laravel and Vue development: Laravel Blade Snippets Laravel goto view laravel-goto-controller PHP Intelephense Vetur ESLint
@CloudWithUgur5 ай бұрын
awesome explanation, just to the point, loved it
@moreoverid17228 ай бұрын
This video so much useful! Thank you very much!
@ninodeitherbalboa58097 ай бұрын
Thanks for the very informative video, I hope you upload more videos about laravel + Vue
@aswathiachu72022 ай бұрын
Thank you❤️
@miltonchowdhury40169 ай бұрын
wow..., it's just awesome and beneficial. thanks a lot for this..plz make a project with Laravel 11 and Vue.js 3 like the previous invoice project
@pusho.developers2 ай бұрын
Just super cool, thank you very much for sharing knowledge. Greetings from Cuba. PD: New Subscriber
@devstrain2 ай бұрын
Thanks you very much
@M37Shadow7 ай бұрын
That was really helpful♥ thanks mate
@mansimahajan18568 ай бұрын
So informative for beginners
@neymanen6 ай бұрын
Addition: to open direct urls we need to change route in web.php to Route::get('/{any}', function () { return view('welcome'); })->where('any', '.*');
@thorfinnthegoatmc6 ай бұрын
hello thanks for the tutorial. can you share how are you consuming external apis with this project setup?
@villageadventurebd38263 ай бұрын
nice
@aguud7 ай бұрын
WOW amazing explanation
@junjunghasudungan19059 ай бұрын
How to reload data from model class to vue template..
@sumamaai24809 ай бұрын
Why not use inertia?
@devstrain9 ай бұрын
Inertia use monolithic architecture that uses one code base to perform multiple business functions, but sometime we can use we can microservices architectural which is approach that composes software into small independent components or services.That is why I choose to show you this microservices architectural approach in this video.
@phuyusystem53318 ай бұрын
el codigo fuente ?
@nolowcode8 ай бұрын
@dollymishra41797 ай бұрын
everthing i have done the same but in my visual studio @vite('resources/css/app.css') this line is not showing correct and final output not showing as hello app. because in your code its showing as blue bt in mine its white and i am getting output '
@devstrain7 ай бұрын
Hi ! Verify if you make configuration in your vite.config.js
@gokhanhepyetiker88992 ай бұрын
same issue my laravel version is 11
@gokhanhepyetiker88992 ай бұрын
@@devstrain import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; import vue from '@vitejs/plugin-vue'; export default defineConfig({ plugins: [ laravel({ input: ['resources/css/app.css', 'resources/js/app.js'], refresh: true, }), vue(), ], }); what is wrong with this?