Answers for "laravel target is not instantiable while building"

PHP
0

laravel target is not instantiable while building

// 1) Make sure the service Provider is listed in 
// 	"config->app-> array of providers"

// 2) Bind interface & concrete class 
$this->app->bind(MyInterface::class, MyRepository::class);

// 3) Clear Config Cache
php artisan config:cache
Posted by: Guest on May-29-2021

Code answers related to "laravel target is not instantiable while building"

Browse Popular Code Answers by Language