0
我想對我的Laravel項目進行「多本地化」。Laravel:子文件夾中的lang文件
我做我的目錄結構是這樣的:
lang
- en
- front
- contact.php
-footer.php
,我建我的頁腳是這樣的:
{{ link_to('/', trans('footer.frontpage'))}}
它完美,但當我想本地化其他刀片頁面,例如在contact us
頁面這樣的:
@lang('front.contact.name')
或本:
{{ __('front.contact.name') }}
或本:
{{ trans('front.contact.name') }}
我只回來在頁面上:
front.contact.name
什麼問題?
謝謝,那是問題:) – Feralheart