LoginSignup
18
19

More than 5 years have passed since last update.

Blade(Laravel)で日付のフォーマット

Last updated at Posted at 2016-06-14

controllerでの処理はあるんだけどview側での操作が意外と見つけにくかったので。

index.blade.php
@foreach($articles as $article)
    <b>{{$article->created_at->format('Y年m月d日')}}</b>
@endforeach

とか出来る。

18
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
19