最赞回答 / 故事的角色1757
还需要安装依赖文件,根目录下执行命令 : composer install, 但是如果PHP版本太低会报错laravel framework需要高版本的PHP,升级相应PHP版本即可!
2018-03-17
最赞回答 / 慕的地5181959
刚好我也遇到了。可能是数据长度没有指定,造成超长你在migrate的代码里加入 Schema::defaultStringLength(191);如下public function up() { Schema::defaultStringLength(191); //new add Schema::create('users', function (Blueprint $table) { $table->increments('id'); ...
2018-03-13