Hi @CarlosJa It can indeed be hard in some cases to follow a video, well, might be the case for me because I prefer to read docs or search for tutorials instead.
Make sure to understand what and how MVC works, it will make things a bit easier when learning. You might as well use basic routes in the beginning like:
....
Route::get('view/{id}', 'ArticleController@show');
Route::post('test/store', 'ArticleController@store');
....
After you have a basic understanding, you might want to do something more advanced with routing, well, I'm not that far either :P
Might be confusing in the beginning, Like I said, get a good understanding what MVC is, and follow some small tutorials and use basic things first, before going to deep.
I never actually used Laracast, because I do not have the patience to watch an episode full of talking, but I can imagine that it can be pretty complex and confusing, when you do not have a basic understanding of it. You can do a lot of things with routing alone, while that it's still a small part of a big system.
I'm sure in the end you'll love Laravel! Good luck.