LoginSignup
1
0

More than 1 year has passed since last update.

Laravel の view で使う Carbon のサンプル

Last updated at Posted at 2022-07-04

View で Carbon で created_at からレコード作成日の日付を日本語にして出したいなー
という単純な要望を検索したら以外に手間取ったので初投稿

{{\Carbon\Carbon::parse($model->created_at)->format("Y年m月d日")}}

あと日付フォーマット

文字 説明
Y 年 4桁 西暦
m 月 2桁 0埋め
d 日 2桁 0埋め
h 時 2桁 0埋め 12時間単位
H 時 2桁 0埋め 24時間単位
i 分 2桁 0埋め

参考

1
0
1

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