All services are added to service container using Service Provider. Every service of your application is provided using service provider. Lets open to bootstrap/app.php.We will see below code. $app = new Illuminate\Foundation\Application( $_ENV[‘APP_BASE_PATH’] ?? dirname(__DIR__) ); If we Ctrl+left mouse click on Application, class Application will open. Here Laravel is binding or registering serviceprovider […]