【问题标题】:Convert date format in French转换法语日期格式
【发布时间】:2021-04-20 15:54:29
【问题描述】:

大家早上好

是否可以将其转换为日期法文格式

{{ $data->updated_at }}

例如 2021 年 4 月 20 日。 谢谢

【问题讨论】:

标签: laravel date format


【解决方案1】:

试试这个

{{
    \Carbon\Carbon::setLocale('fr');
    echo $data->updated_at->translatedFormat('%d %B %Y');                                           
}}

这就是你要找的How to change the date language in laravel?

【讨论】:

  • 谢谢亲爱的。我使用您的链接来找到好的解决方案。它正在使用: updated_at->formatLocalized('%d %B %Y'); ?>
猜你喜欢
  • 2014-09-26
  • 1970-01-01
  • 2017-01-16
  • 2020-11-24
  • 2017-12-23
相关资源
最近更新 更多