I am working with Laravel5.4. When I use socialite package to login with Facebook, I need to add this line of
Schema::defaultStringLength(191);
to boot function of AppServiceProvider
class in order to create default password for new user.
Beside that I have to add using statement at top of AppServiceProvider
class like this
use Illuminate\Support\facades\Schema;
Everything is working well on my localhost but when I upload all code to my share hosting, I get this error
Class 'Illuminate\Support\facades\Schema' not found.
Can anyone help me on this. I am highly appreciated your help!
In my case, I use capital letter its work.
replace with this