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

后端 未结 7 1895
终归单人心
终归单人心 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:42

    In my case, I use capital letter its work.

    use Illuminate\Support\facades\Schema;

    replace with this

    use Illuminate\Support\Facades\Schema;

提交回复
热议问题