M
M
Mokhirjon Naimov2015-06-29 16:33:47
Laravel
Mokhirjon Naimov, 2015-06-29 16:33:47

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:

  • Laravel 5: Basics - by Dmitry Afanasyev, answered by Oleg Serebryakov @Bandicoot
  • Guestbook on Laravel 5.1 - by loftblog , answered by Oleg Serebryakov @Bandicoot
  • Laravel 5. Basics of use - otdel-devsite.ru/category/laravel

Not video tutorials :):
  • Real-time applications on Larave... - author Alexander Egorov
  • Registration by invites in Laravel 5 - by Roman Grachev aka Graker
  • Laravel 5 Beauty by Chuck Heintzelman
  • A lot of practice - otdel-devsite.ru - answered Nikolai @zzzmaikzzz
  • Laravel - AngryDeer Notes - answered by Oleg Trubin @otrubin

UPD #2:
A selection of links to materials on the Laravel framework in Russian.
UPD #3 (answered by den-masonov ):
Laravel, Middleware . Part 1. Theory .
Laravel, Middleware.Part 2.Practice .
Laravel, Middleware.Part 3.Practice .
UPD #4:
What's New in Laravel 5.4
Laravel 5.4 From Scratch
UPD #5 (answered by wearts_ru ):
Mindspace

Answer the question

In order to leave comments, you need to log in

8 answer(s)
C
Crash, 2015-06-29
@zvermafia

www.youtube.com/user/simpletrainingcom
www.youtube.com/playlist?list=PLY4rE9dstrJy1xVuLZ5...
Also, I found it recently:
www.youtube.com/playlist?list=PL55RiY5tL51oloSGk5X...

A
antimind, 2015-06-29
@antimind

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.

I
Ichi Nya, 2015-08-30
@Ichi

strange, they did not provide a link to the documentation in Russian

B
brunen9, 2016-12-17
@brunen9

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...

A
Andrey Boychenko, 2019-02-13
@Ka4_Piton

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();

Better do it like this
$nomenclature = new ModelNomenclature();
        $nomenclature->fill($request->all());
        $nomenclature->save();

Better yet, don't do it in the controller. In general, laravel provides many different ways to do the same thing.

B
Barmunk, 2016-07-04
@Barmunk

Listen, have you offered documentation in Russian yet?

D
den-masonov, 2017-01-29
@den-masonov

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_...

W
wearts_ru, 2017-05-23
@wearts_ru

The official dock is the best theoretical part. And you can watch the practice from this guy (you don’t need to know English)
https://www.youtube.com/channel/UCSJbGtTlrDami-tDG...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question