Answer the question
In order to leave comments, you need to log in
Are there Laravel 5 practical free video tutorials?
I know these:
Laravel 5 Fundamentals
What's New in Laravel 5.1
What's New in Laravel 5.2
What's New in Laravel 5.3
But I would like to see a practical example of creating some projects...
Please share links! :)
UPD #1:
Video tutorials:
Answer the question
In order to leave comments, you need to log in
www.youtube.com/user/simpletrainingcom
www.youtube.com/playlist?list=PLY4rE9dstrJy1xVuLZ5...
Also, I found it recently:
www.youtube.com/playlist?list=PL55RiY5tL51oloSGk5X...
Damn, how is it? How can I learn programming from video tutorials? Have you forgotten how to read or what? There is excellent documentation for Laravel, including in Russian. Lots of examples, lots of snippets, lots of guides. That's why now these video tutorials are in such a trend?
UPD. Forgive me if I was harsh, but I really do not understand how it is possible to learn programming from video. For me, this is the same as when I was a child writing essays on films, and not on books.
Not exactly a direct answer to the question, but a related one. After watching the video tutorials, I usually have the impression of some understatement / misunderstanding. And then books come on the scene - they are much easier to perceive when you have already received some, albeit incomplete, understanding of the subject from video lessons. For Laravel, for example, there is a very detailed book by Matt Staufer, if the budget does not allow you to buy directly from the store, you can buy it together: https://skladchik.com/threads/laravel-up-and-runni...
You are unlikely to find normal lessons, well, in any case, it will not be easy.
Not a bad controller https://pastebin.com/iNSy2LJv
A bad controller https://pastebin.com/iVLzZ7av
Most of the tutorials will show you that it's okay to poke validation, work with the base, and in general, anything inside your controller. Although - this is far from the case.
In the same second example, there is a method that adds data to the database, like this - you should not do it
$nomenclature = new ModelNomenclature();
$nomenclature['title'] = $request['title'];
//Еще какие либо поля
$nomenclature->save();
$nomenclature = new ModelNomenclature();
$nomenclature->fill($request->all());
$nomenclature->save();
Here is a course in Russian on creating a corporate website on Laravel 5.2. There are two more courses in the playlist: theoretical and landing course
https://www.youtube.com/playlist?list=PLBT2g0kDwD_...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question