I have an contract App\Contracts\Uploader and in my AppSeriveProvider is
public function register()
{
$this->app->bind(
'Illuminate\Contracts\Auth\Registrar',
'App\Services\Registrar'
);
$this->app->bind(
'App\Contracts\Uploader',
'App\Services\Uploader'
);
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community