我正在尝试在新的laravel 5.5安装上安装voyager软件包,但我一直在遇到这个错误

(php 7.0.22,mysql ver 14.14 Distrib 5.7.19,在Ubuntu上)

jack@jo:~/Desktop/laravel$ php artisan voyager:install --with-dummy
Setting up the hooks
Hooks are now ready to use! Go ahead and try to "php artisan hook:install test-hook"
Publishing the Voyager assets, database, language, and config files
Copied Directory [/vendor/tcg/voyager/publishable/assets] To [/public/vendor/tcg/voyager/assets]
Copied Directory [/vendor/tcg/voyager/publishable/database/migrations] To [/database/migrations]
Copied Directory [/vendor/tcg/voyager/publishable/database/seeds] To [/database/seeds]
Copied Directory [/vendor/tcg/voyager/publishable/demo_content] To [/storage/app/public]
Copied Directory [/vendor/tcg/voyager/publishable/lang] To [/resources/lang]
Publishing complete.
Publishing complete.
Migrating the database tables into your application
Migration table created successfully.

  [ErrorException]
  Undefined index: index_type


有谁知道这是什么问题吗?

最佳答案

也许您以前编写的代码有误。
在您的应用程序中搜索index_type

08-04 15:28