What are the main concepts within laravel?

I am starting to use Laravel 5.1, I gained knowledge in php, js, angular, express, node, apache, mysql, sqlserver and some other things.

In Angular, I like that everything is built as singlets, so the basic concepts are: modules, controllers, services, factories, directives, routes, views, areas, etc.

I would like to know what concepts I need to understand when creating an application under laravel?

+4
source share
2 answers

Basically, everything you need to know is very well documented in the official documentation , Taylor Otwell made a huge effort by making the documentation to make the framework more understandable.

Key concepts:

After that, pay attention to the concept of Middleware , there are also many built-in services, such as: Auth, Pagination, Encryption, etc. .... check them out.

Something you will like, Eloquent ORM , makes it easy to interact with the database.

The Laravel community has its own website and laracasts you can also get help.

+5

Laravel Service Container ( IoC Container) "" , .

Middleware laravel: , , "" , , "" -

- Facades: ( ), , , , succint,

+5

Source: https://habr.com/ru/post/1611043/


All Articles