Search code examples
laravellaravel-bladedate-formattingphp-carbon

How to change the date language in laravel?


I want to change the language of the date i get in my view from english to french

{{ strftime("%d %B %Y, %H:%M", strtotime($article->created_at)) }}

Solution

  • Set Carbon locale first, then access

    Carbon::setLocale('fr');
    $date_to_show_in_view = $article->created_at->diffForHumans();
    

    For your second query(to get 15 Mars 2018), use this-

    <?php
       setlocale(LC_TIME, 'French');
       echo $base_weight_category->created_at->formatLocalized('%d %B %Y');
    ?>