我有一个laravel 6应用程序,我想安装望远镜,因为我执行了composer updatecomposer dump-autoload之类的所有命令,然后安装望远镜,一切正常,当我运行php artisan telescope:install时,我收到以下消息:

Publishing Telescope Service Provider...
Publishing Telescope Assets...
Publishing Telescope Configuration...
Telescope scaffolding installed successfully.

但是它不会生成配置文件和迁移,所以当我运行php artisan migrate
我收到此消息:
nothing to migrate

因此我无法使用望远镜。请指教 。

最佳答案

对我来说,安装尚未完成,所以我评论了API提供程序并清除了缓存。并重新安装。
如文章中所给:https://panjeh.medium.com/new-installation-of-laravel-telescope-fails-418afa2b8972
“是config/app.php文件中的这一新行:
App\Providers\TelescopeServiceProvider::class,
这会导致错误,并且似乎安装未完成,仅添加了该行!
所以我在config/app.php文件中注释了这一行”

关于PHP工匠望远镜:install not publishing the assets in laravel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58303585/

10-12 13:07