Laravel Voyager 管理面板显示损坏的 link 文本
Laravel Voyager admin panel showing with broken link texts
我刚刚安装了 Voyager 管理面板,link 文本显示有问题,如图所示:
我的#voyager.php是这样的->
'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',
],
],
我找到了 similar question here 但没有答案。
我刚刚创建了一个新数据库,并且 运行 再次创建了 php artisan voyager:install --with-dummy
命令。
现在链接正常了!
这是一个翻译问题,只需更改app.php:
'locale' => 'en'
解决问题。它对我有用。
我刚刚安装了 Voyager 管理面板,link 文本显示有问题,如图所示:
我的#voyager.php是这样的->
'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',
],
],
我找到了 similar question here 但没有答案。
我刚刚创建了一个新数据库,并且 运行 再次创建了 php artisan voyager:install --with-dummy
命令。
现在链接正常了!
这是一个翻译问题,只需更改app.php:
'locale' => 'en'
解决问题。它对我有用。