LoginSignup
1
0

More than 5 years have passed since last update.

LaravelでViewの日付フォーマットを変更する方法

Posted at

やりたいこと

2018-12-24 21:00:00と表示されるのを2018/12/24 21:00と表示されるようにしたい

やり方

sample.blade.php
<p>{{ $sample->date_time }}</p> // 2018-12-24 21:00:00
<p>{{ $sample->date_time->format('Y/m/d H:i') }}</p> // 2018/12/24 21:00

おまけ

sample.blade.php
<p>{{ $sample->date_time->format('Y/m/d') }}</p> // 2018-12-24 21:00
1
0
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
1
0