Laravel Service Container overview
In a nutshell
The Laravel service container is responsible for managing your classes’s dependencies and performing dependency injection via the constructor.

Most of the time, type hinting your dependencies in your constructors like in the above example will suffice. But you might need to manually interact with the container in the following situations:
- If you write a class that implements an interface and you wish to type-hint that interface on a route or class constructor, you must tell the container how to resolve that interface.
- If you are writing a Laravel package that you plan to share with other Laravel developers, you may need to bind your package’s services into the container.
Recipes
Bind a class instance to the service container
You typically bind a class instance within service providers.
Within a service provider, you always have access to the container via the $this->app
property. We can register a binding using the bind
method, passing the class or interface name that we wish to register along with a closure that returns an instance of the class:
You can also bind to the container outside a service provider via the App
facade:
You can use the bindIf
method to register a container binding only if a binding has not already been registered for the given type:
Bind a singleton
The singleton
method binds a class or interface into the container that should only be resolved one time. Once a singleton binding is resolved, the same object instance will be returned on subsequent calls into the container:
You may use the singletonIf
method to register a singleton container binding only if a binding has not already been registered for the given type:
Bind a scoped singleton
The scoped
method binds a class or interface into the container that should only be resolved one time within a given Laravel request / job lifecycle. While this method is similar to the singleton
method, instances registered using the scoped
method will be flushed whenever the Laravel application starts a new “lifecycle”, such as when a Laravel Octane worker processes a new request or when a Laravel queue worker processes a new job:
Bind an interface to an implementation
This statement tells the container that it should inject the RedisEventPusher
when a class needs an implementation of EventPusher
. Now we can type-hint the EventPusher
interface in the constructor of a class that is resolved by the container.
Contextual binding
This statement tells the container that it should inject the RedisEventPusher
when a class needs an implementation of EventPusher
. Now we can type-hint the EventPusher
interface in the constructor of a class that is resolved by the container.
Bind primitives
Extend bindings
Resolving
Resolve a class instance from the container
If some of your class’s dependencies are not resolvable via the container, you may inject them by passing them as an associative array into the makeWith
method. For example, we may manually pass the $id
constructor argument required by the Transistor
service:
Check if a class or interface has already been bound
Invoke a method and inject dependencies
Given this class:
You can execute the generate
method via the container like so:
Or even do something like this to run a closure via the container: