Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试过这个,但得到错误:
{{ strtolower( @lang('basics.days') ) }}
如何在5.4的.blade.php文件中转换为小写本地化字符串?Laravel
.blade.php
Laravel
您可以使用trans()助手:
trans()
{{ strtolower(trans('basics.days')) }}