According to the docs this seems like it should work?
https://laravel.com/docs/5.4/providers . (see Boot Method Dependency Injection)
You don't need a service provider instance .. you need the class that was created by service provider .. your code should look like
public function boot(\Illuminate\Support\Facades\DB $db)
{
// do stuff with $db
return "test";
}
because the database service provider register a db singleton
$this->app->singleton('db', function ($app) {
return new DatabaseManager($app, $app['db.factory']);
});
also you could use
$db = $app->make('db')
instead of injecting
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community