I appreciate that you didn't add frontend part to this video. People who come from frontend back ground can save the time and only learn what they need.
@rootsky55515 жыл бұрын
Very helpful.
@meijboomm4 жыл бұрын
Exactly, very handy
@kidbrave_7673 Жыл бұрын
I agree 💯! Great content, I feel like I understand a good amount of laravel after seeing your video, but needed to lock need to see and hear it from a different perspective and you did that for me. Thank you! 🙏🏽
@MasonE814 жыл бұрын
This was the perfect tutorial for me. I'm not a beginner and I know frontend. I just needed a whirlwind tour of Laravel. Thanks!
@CodersGuide6 жыл бұрын
Trying something totally new with this video. Never made longer videos like this but I think some of you might prefer this. Let me know what you think! Also, the Bootstrap 4 course is still available on Scrimba. Had some trouble getting it up on KZbin but it will be here eventually!
@abdulbasetalhelaly92174 жыл бұрын
Why you're uploading vids anymore
@gwho3 жыл бұрын
this is like the only laravel tour video that isn't 982135789 hours long. great call. i came because of this.
@PeterJohnsonWales4 жыл бұрын
I've watched quite a few beginners tuts on Laravel over the last week or so, and this is the only one that I thought explained things in a way I understood easily. Thanks very much. I think I dare have a go myself now!
@scifislack3 жыл бұрын
This is such an excellent tutorial, doing a project using laravel and other stuff I've found focuses too much on the frontend. This simplifies things perfectly and you make it incredibly easy to follow. I know this is 2 yrs later but thank you so much for this!
@sethcenterbar4 жыл бұрын
29:54 "squint a little bit and lower your expectations" hahaha. I'm going to use this. Great tutorial! BTW, this format was perfect as a person who wants to jump into the framework. Even the errors you ran into provided useful context to how things work.
@EbowGB3 жыл бұрын
Thanks for this Neil. As a former php dev that hasn't really done a lot with it over the last 7 years, this was easy to follow and very helpful as a very first step in to Laravel. Also good to have a lot of local errors (no plugin for VSC that added the use... items, fixing the correct timezone) that were quickly google-able, and I'm a big fan of the "reality of developing" items you kept in when stuff didn't work as expected. I appreciate Laravel is "quite a large" topic, but this has got me going - many thanks once again!
@gauthierkanku63853 жыл бұрын
This is a very nice tutorial. I have been looking for tutorials around the internet, most of them were so long and I don't have time to watch 47hrs video for a framework while I already know the language. This is a straightforward tutorial that I was looking for. Thanks a lot, Neil.
3 жыл бұрын
Laravel is basically a full stack. The frontend is coupled to the back. You can decouple it using API and something like Vue or react, but by default it isn't decoupled. For anyone that was curious.
@busyrand2 жыл бұрын
Thank you...
@busyrand2 жыл бұрын
This was fantastic, and very charming. I didn't actually code along with you, because I took this as more of a Look-And-Learn than a Code-Along. Great job sharing the underlying structure and useful functions nobody every speaks about in detail. Very assuring content.
@keokawasaki78334 жыл бұрын
"building a product from start to scratch" got me
@HostDotPromo5 жыл бұрын
Laravel is amazing 🔥 I recently have been building all my businesses with laravel. You are so spot on with it taking away tedious tasks.
@hotshotgolfer30792 жыл бұрын
Thank You Neil. I needed an introduction to lLaravel and you certainly did a fine job explaining the basics.
@hippopotamus862 жыл бұрын
Route::get('/', 'HomeController@index'); no longer works it seems in Laravel 9. Results in 500 internal server error. Must do Route::get('/', [App\Http\Controllers\HomeController::class, 'index'])->name('Home'); instead
@castordj2 жыл бұрын
Thank you!
@keokawasaki78334 жыл бұрын
Great tutorial! doesn't goes into much detail and probably misses out on some crucial stuff but totally gets you going.
@Jishnuk0112353 жыл бұрын
Thanks, brother. This tutorial helped me a lot to understand what's in Laravel as a beginner.
@aarush_thapa4 жыл бұрын
The best video if you already have other framework's knowledge and just to the point.
@TonyGirling3 жыл бұрын
Great video. Coming from using Code Igniter this was a great leg up into Laravel. Something I've been putting off for a while but the mind migration is relatively painless.
@yixiguan65204 жыл бұрын
Absolutely love this tutorial. Like you said, it covered the essentials of Laravel. Now I want to build something using it. I really appreciate you didn't include any styling and authentication in there. It saved me tons of time on something I am not looking for in this video. Great job!
@henriquefriedrich59604 жыл бұрын
Nice tutorial. I can now have a grasp of the framework. For sure I will have to return to check some concepts when I try to develop my own project. Thanks!
@ScottPlude4 жыл бұрын
GREAT video! Now I am looking forward to more content on laravel. Seems like the next step in development after learning vanilla PHP
@carlosfagomes4 жыл бұрын
very good introduction to laravel, Neil. used to play with php when I was younger and took a long break to work on my phd and other uni related projects. i'm now coming back to web development for a small ecomm project and am marveled at how easy it is to work with modern php when you put laravel on top of it (db integrations are a good example). thanks for sharing.
@samybaxy Жыл бұрын
Thank you, Neil. Neat refresher on the basics.
@toxicwxste3 жыл бұрын
Excellent video, this was all I needed to know to get started. Very concise explanations! Thanks for skipping front-end and PHP basics!
@supercoolcat76923 жыл бұрын
The texts are so tiny watching this on my phone cos I can’t sleep. Asides the text size, your explanations are spot on. Thanks 🙏🏻
@imranayari4 жыл бұрын
I really appreciate your excellent tutorial. @22:05 one has to create the main Laravel database before he does the table migration.
@werbnnerf4 жыл бұрын
This was extremely useful. Makes me feel more comfortable migrating from my broken but familiar framework I built to an actual framework that works haha. Thank you so much for taking the time to make this! Btw loved the 1998 html comment hahahahaha XD
@imranayari4 жыл бұрын
Please note, in this 2020 and with Laravel 8, you need to use this for routing: Route::get('/', [UserController::class, 'index']); instead of Route::get('/', 'HomeController@index'); best of luck to your learning!
@bolajiteslim9408 Жыл бұрын
Love it dude,easy to understand ,pls make an update on this video cause things changed on Laravel and less experience developers might if it difficult
@electrotsmishar4 жыл бұрын
Really appreciate your efforts in making such wonderful video
@MrMysteryyy5 жыл бұрын
this video is awesome, you go over the basics and i can search up everything I need myself. No Bullshit! I've been working through this 45 minute tutorial for the whole day, im so glad that its not 10 hours.
@shreyassukumaran98812 жыл бұрын
Thanks so much for the tutorial. Raw content was engaging.
@austinblackwell91413 жыл бұрын
This is was a SOLID tutorial. Well done and thank you.
@seanp9738 Жыл бұрын
I'm so sad you stopped after this. Finally found a tutorial that made it click for me.
@dinhnhohao4 жыл бұрын
thank, very straightforward and cover everything essential part I need to work with my team mate.
@karthikbalasubramanian80464 жыл бұрын
Good learning stuff, you are so natural and explained the concepts more easily
@SleepyMicky4 жыл бұрын
Thank you for making this. Short, simple and good explanation of the basics. Great introduction in Laravel!
@davidjunior3902 жыл бұрын
Hello. This is a nice tutorial. Pls, what color scheme are you using? I like it.
@kainerda20884 жыл бұрын
12:47 I don't think you have to stop the server. Simply opening a new terminal should be fine.
@zongyu1004 жыл бұрын
This is a very good video for beginners, that said, it would be best to include setting up environment :)
@claudioseccia93804 жыл бұрын
great tut, got me started in 45 minutes! Thank you
@ianbatcheldor47673 жыл бұрын
Thanks for the video Neil, it was exactly what I was looking for
@michaelchiayin3514 жыл бұрын
Thanks, for this video, finally understand the back-end work
@alexanderhorner4 жыл бұрын
Best laravel tutorial I've seen so far.
@gertnutterts9884 жыл бұрын
Great vid, looking at how it's used for something is the best way to wrap your head around the workflow/concepts. You have a great online tutor voice by the way. It would be a shame if that went to waste. I clicked the bell, hope you'll make new content sometime in the future.
@rkraiem1004 жыл бұрын
Note to self: 28:24 for reference in the future. Wish youtube allowed us to make private messages/notes on videos... sry OP.
@hirenrana37413 жыл бұрын
pretty nice and simple explanation You saved lot of my time!!
@RawHasan4 жыл бұрын
Thank you so much for making this video! I am just starting Laravel and was reading books and watching basic videos, but was struggling to get a hold on that. This video just explained everything nicely and got me started. Looking forward to watch more videos like this and learn the next steps.
@unhappycat45214 жыл бұрын
hi , i'm about to start learning laravel , and i want to know how things going with u in learning it ?
@sevdalink66764 жыл бұрын
I started to learn Django (seems somehow complicated to me) and skipped to see how Laravel works. I found your video, and you explained it really quick but clear. Thank you.
@sornakumarrajaguru45624 жыл бұрын
Nice tutorial.. gives good intro into Laravel
@cosciisoft4 жыл бұрын
Thank for share what is your formatter Extension
@DavidSilva-og5rs3 жыл бұрын
Nowadays you need to input the whole namespace on your route to work. Route::get( '/', 'App\Http\Controllers\HomeController@index');
@MichielVries3 жыл бұрын
Thanks a lot, already wondered why this magic didn't work on my end.
Absolutely awesome video! I'm in awe of the power of Laravel.
@kfchotwings4 жыл бұрын
What VS theme are you using? It looks great! Also good vid
@tedvangageldonk76984 жыл бұрын
Left a comment w/ the theme!
@pianoriddhiagrwal5 жыл бұрын
thanks for such good video which clears the basic idea of laravel
@67automator4 жыл бұрын
This is really an awesome video which provides great introduction information. I have a question. Is there somewhere also a graphical overview of the architecture of Laravel that does not just show the MVC model but brings it into context with all the special components such as Blade, CSRF, Migration, Seeding and other terminologies like Scopes, QueryBuilder.... etc.?
@chitranshrathore37025 жыл бұрын
Super cool tutorial! Clear and up to point
@kashifahmed57774 жыл бұрын
Amazing! Explained Very Well and to the point!
@CODINGISEASY5 жыл бұрын
*Great overview* I was thinking of making a video like this but you have it covered :P
@FootballInstagramStories5 жыл бұрын
CODING IS EASY you both have great videos
@YorkshirePork5 жыл бұрын
I love laravel
@laraveltutorials83785 жыл бұрын
CODING IS EASY 😍
@lokinewborn36963 жыл бұрын
only tutorial i was looking for, thanks you so much!!!
@niksatan5 жыл бұрын
Great video, thank you for this, I learned a lot! This is the best format, in your presentation you clarified some things i was confused about! For future videos i would like (and probably much of knowledge seekers -> half of youtube) how to work with API in Laravel 5.8 and similar real world web app for n00bs! Thanks!
@rw77995 жыл бұрын
do you have a functions page or do you make a controller for every function?
@CODINGISEASY5 жыл бұрын
you have multiple functions (methods) inside each controller
@wagyi41524 жыл бұрын
That is amazing video. All I want to know is here. Thank u a lot dude
@owenh17164 жыл бұрын
Awesome introductory video to Laravel!
@kylemurphy34225 жыл бұрын
Very clear demo, thanks a lot
@kdshah29686 жыл бұрын
Really Helpful Video. Can you make more videos in Laravel..like may be building real world website in Laravel..
@DjFiessendWasser4 жыл бұрын
Nice video thank you :) what is the name of the font you using ?
@thiagoferraz53623 жыл бұрын
Thank you so much for this! Great content!
@dlysele3 жыл бұрын
31:47 "if you are American, sorry we do it the right way" I always love some mild roasting.
@icekangg4 жыл бұрын
This is soooooo helpful thank you very much for making this!
@sambarjunk5 жыл бұрын
Cool intro to laravel, I can relate to all the mistakes
@teddyruxpin38113 жыл бұрын
I did exactly what you've done but I am getting "Invalid route action: [HomeController]", "HomeController is not invokable. The controller class HomeController is not invokable. Did you forget to add the __invoke method or is the controller's method missing in your routes file?"
@robmux4 жыл бұрын
Thanks man, do you have tutorials on rest apis or can you recommend a book/video? Pls
@hwy4194 жыл бұрын
Great video! Thank you! Enjoyed it!
@shahiferdous5 жыл бұрын
amazing! really i don't have any words to thank you. you got me the kick start that i needed. thanks a lot dude.
@flayshon6 жыл бұрын
Really good format. Thanks for the vid!
@aaammm18884 жыл бұрын
Neli Rowe Love for this tut brother Need to learn this fast The world of tech is growing and i do not want to be left behide keep up the great work man I like to ask have you worked wuth crypto and laravel?
@Boufal105 жыл бұрын
does laravel support dependency injection?
@JustGames372 жыл бұрын
17:50 "If you ever downloaded WordPress, 1- I feel sorry for you ..... " Hahahahahaha that was brutal
@huqiao5 жыл бұрын
Amazing tutorial! Thanks Neil.
@imranayari4 жыл бұрын
And again, in 2020 for Laravel version 8 plus, for your create function in MessageController, you need to use $message->title = $request->input('title'); $message->content = $request->input('content'); instead of $message->title = $request->title; $message->content = $request->content;
@HenrykKwak3 жыл бұрын
Very useful video, just a little remark : @extends as 3rd person singular, not plural , as " this template extends another blade template"
@malkiwijerathna85523 жыл бұрын
I was going to suicide over this laravel data manipulation thing....You really saved me....This video is Very Helpful 😍😍😍😍😍
@navymcz5 жыл бұрын
Thanks for the video. Great overview!
@pugazhs255 жыл бұрын
Very Nice. Very well explained.
@dhiahassen94143 жыл бұрын
Congrats ! you have done it right !
@gravelessForever4 жыл бұрын
Legendary Tutorial 10/10
@KLTheArtist4 жыл бұрын
For me when typing i dont get the object package like ( use App\Message automatically) I have to type it in.
@shadmanrahman19054 жыл бұрын
Bro this is amazing!
@geoafrikana Жыл бұрын
Impressive video. Thanks.
@wEbCoAdEr4 жыл бұрын
Thanks a lot for this great tutorial brother
@johnclintonmwangi4 жыл бұрын
@18:45 timestamps on the migration files are for determining the order of executing migrations
@developer22 жыл бұрын
installation 2:06 tutorial starts at 7:57
@CarlMahnke3 жыл бұрын
Good narrating speed.
@stichl4 жыл бұрын
For the autocomplete at 27:00 to work, you'll need the following VS Code extension: marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client
@tim199320023 жыл бұрын
fail, still undefined type 'APP\Message'. Intelephense(1009) [13,21]
@nulI_dev6 жыл бұрын
great vid, easy to follow along
@gerard43174 жыл бұрын
Thank you very much for this great lesson I learned a lot!
@gumilangcode Жыл бұрын
This was cool bro!
@RossDCurrie6 жыл бұрын
23:53 "So with the power of Emmet, I can generate all my HTML..." (What's Emmett?) 27:00 "And when I hit enter now, it's going to add this line up here". (No it doesn't?) Can you update the video description with a list of the VS Code extensions you've got installed? Suspect there's a few I'm missing.
@CodersGuide6 жыл бұрын
Great idea! I'll prepare a video on this. Was already thinking of a video about all of the tools I use.
@jnath5 жыл бұрын
@@CodersGuide Yes please, I used Sublime RN, ditched VSCode because I can't get it to work well with PHP (Some type-hint issues). After seeing this, I might gave VSCode another shot.
@colli3d5 жыл бұрын
try PHP Namespace Resolver
@NphiniT5 жыл бұрын
@@jnath Yh, I hate VScode. Always shows annoying red lines for extensions i don't need. Sometimes the freaking code won't run because of that!!!
@jnath5 жыл бұрын
@@NphiniT Dude, Sorry but recently I had changed my mind... Somehow VSCode is definitely better now thanks to extensions for Laravel and bunch (a lot) of extensions. I just gave VSCode one more chance and boii it's now good.