在Laravel 5中创建主菜单的最佳方法是什么?以及如何仅在用户登录时显示菜单项?制作这种多语言的最佳方法是什么?
答案 0 :(得分:7)
Laravel提供了一种使用外观Auth::check()
检查用户是否已登录的简便方法。
if (Auth::check()) {
// The user is logged in...
}
关于翻译,您可以在此处查看:Localization
结构的定义如下:根据文档:
/resources
/lang
/en
messages.php
/es
messages.php
Laravel还提供了一种使用trans('string.to.translate')
翻译短语的简便方法,可在此处trans()查看。
在messages.php内(在两个lang目录中),您必须设置翻译字符串。在en/messages.php
:
return [
'welcome' => 'Welcome'
];
在es/messages.php
:
return [
'welcome' => 'Bienvenido'
];
使用这两个,您可以在应用程序中执行以下操作,例如:
// Get the user locale, for the sake of clarity, I'll use a fixed string.
// Make sure is the same as the directory under lang.
App::setLocale('en');
在view
内:
// Using blade, we check if the user is logged in.
// If he is, we show 'Welcome" in the menu. If the lang is set to
// 'es', then it will show "Bienvenido".
@if (Auth::check())
<ul>
<li> {{ trans('messages.welcome') }} </li>
</ul>
@endif
答案 1 :(得分:-1)