Class 'Illuminate\Support\facades\Schema' not found

后端 未结 7 1819
终归单人心
终归单人心 2021-01-29 05:25

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);
<
相关标签:
7条回答
  • 2021-01-29 05:58

    I was facing the same error when i hosted website .

    Class 'Illuminate\Support\facades\Schema' not found.

    then i just replaced use Illuminate\Support\facades\schema; with use Illuminate\Support\Facades\Schema;

    0 讨论(0)
提交回复
热议问题