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

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

    OMG I follow the marked answer of question below and replace the using statement with

    use Schema;
    

    and the error gone. But I still don't know why it works well on local and only cause error on server.

    Method 'create' not found in class Illuminate\Support\Facades\Schema

提交回复
热议问题