首页 > 解决方案 > formatLocalized 总是以英文给出结果

问题描述

如果我使用$post->created_at->formatLocalized('%A %e %B')结果总是英文,即使我设置locale'nl'in config/app

我尝试添加\Carbon\Carbon::setLocale(config('app.locale'));AppServiceProvider运行php artisan optimize:clear但没有运气。

标签: laravel

解决方案


你可以通过这种方式在你的 Carbon 上设置语言环境Russian

@php
   \Carbon\Carbon::setLocale('ru');
@endphp

{{ $post->created_at->translatedFormat('%A %e %B') }}

推荐阅读