I'm making a new Service called Factures
in App\Services\Factures
.
I created the \App\Services\Factures\FacturesServiceProvider
:
public function register() {
$this->app->bind('factures', function ($app) {
return new Facture;
});
}
public function boot() {
// laod Routes
$this->loadRoutesFrom(__DIR__ .'/Http/routes.php');
// load Views
$this->loadViewsFrom(__DIR__ . '/views', 'factures');
}
I registered my provider everything works fine expect the Auth::user()
in returns me null
in the views and the routes.php
.
How can I get access to the Auth() in custom service?