Full Stack Vue.js & Laravel 7 - Build a TODO App with CRUD (CREATE, READ, UPDATE, DELETE) tutorial.

preview_player
Показать описание
"Vue + Laravel CRUD SPA"

Рекомендации по теме
Комментарии
Автор

Side note: 02:02 Magic. Your hair grows so quick after 1 second. :D

gushung
Автор

I suggest to the author to try the Vue-Form library on a recent Laravel and Vue versions and possibly give us an alternative, because it just won't work. First it gives an error because there is a Vue object created inside the script, so we can delete those last few lines, but then there is a constructor issue for Form().

rafsoverflow
Автор

31:20 for Laravel 8 you have to write the route like the following or will get an error on submitting data.
Route::resource('todo', TodoController::class);

darkman
Автор

worked well with no errors. Thanks
Those on laravel 8 can add " protected $namespace = 'App\Http\Controllers' " on RouteServiceProvider.php to avoid errors on submitting data

davemwangari
Автор

Glad to see that, just starting vue js, Thanks man :)

generictv
Автор

Excellent tutorial. Please make a tutorial on Vue, Vuex and Laravel. Thanks.

zhasan
Автор

very nice, i really like this tutorial

mandankoding
Автор

Argument 1 passed to must be of the type array, string given, called in laravel 7

liamnarisma
Автор

I'm halfway through this video and am VERY optimistic that it is finally going to show me the proper way to combine Vue and Laravel in the same app. May I make one suggestion though for whatever videos you make in the future? Could you set your computer to use a larger font - twice as big would be great! - so that I can read the file names in the left-most column of VS Code? It's really hard to read the text over there even when I'm in full-screen mode! (I can read the text in the active editor okay but a little bigger there would be better too, otherwise it can be very hard to distinguish curly braces from parentheses and commas from semicolons.)

hughmungus
Автор

Thanks sir, but the text size in vscode is kinda too small, just my suggestion...

swathered
Автор

In saveData(), where did you get FormData() from? I mean, where does it exist?

amolacharya
Автор

Thanks, man. You have saved my life. (y)

muhammadomer
Автор

not working for me, I get a lot of errors in the console when I import the Form.js file

SergioLossetti
Автор

well done...i really appreciate that...

mindcrazy
Автор

I thought it was CRUD. But you only use Create, Retrieve. tho this is very helpful but can you send the full tutorial video of your code?

stevencopada
Автор

So when i did the vuejs with button it wont show up in my screen

paulomiguelsampang
Автор

If you try with Laravel8, then you have to declare a Controller suitable for Laravel 8 version as "Route::resource('todo', TodoController::class);",
and don't redo the declaration of the new Vue constructor in the Form.js file.
The new Vue declaration should be located in resources/js/app.js.

jsdeveloper
Автор

I have trouble on some dropdown behavior when app.js conflicts with bootstrap. How should I solve it?

markbriones
Автор

the app.scss dosnt work i donno why but it works in the app.scc of the public folder can you please help me and tell me why

travelTripsCamps
Автор

Vue is not defined
at Object../resources/js/Form.js

lucianrusu