Laravel service container

Share:
Explain Laravel service container ?
One of the most powerful feature of Laravel is its Service Container
It is a powerful tool for resolving  class dependencies and performing dependency injection  in Laravel .
Dependency injection is a fancy phrase that essentially means  class dependencies are "injected" into the class via the constructor or, in some cases, "setter" methods.
You can read  more from here


No comments