本文介绍了Laravel Voyager管理面板显示链接文本已损坏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚安装了Voyager管理面板,链接文本显示为损坏,如图片所示:

I've just installed Voyager admin panel and the link texts appear broken, like the picture:

我的#voyager.php就是这样->

My #voyager.php is like this ->

   'multilingual' => [
    /*
     * Set whether or not the multilingual is supported by the BREAD input.
     */
    'enabled' => true,

    /*
     * Set whether or not the admin layout default is RTL.
     */
    'rtl' => false,

    /*
     * Select default language
     */
    'default' => 'en',

    /*
     * Select languages that are supported.
     */
    'locales' => [
        'en',
        'pt',
    ],
],

我在此处找到类似的问题,但没有答案.

推荐答案

我刚刚创建了一个新数据库,然后再次运行php artisan voyager:install --with-dummy命令.

I've just created a new database and run again the php artisan voyager:install --with-dummy command.

现在链接似乎正常了!

这篇关于Laravel Voyager管理面板显示链接文本已损坏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 08:46
查看更多