0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravelでデータベースのcreated_atから日付だけ取り出す

Posted at

#Laravelでデータベースのcreated_atから日付だけ取り出す

##背景
created_at を使用し、いつから利用しているのかを表示したい。しかし、created_at をそのまま使用すると日付だけでなく時間まで表示される。日付だけ表示したい。

##対処方法
Conposerで公開されているパッケージの中に存在するライブラリであるCarbonを使用。
作成したcontrollerファイルを編集する。
まずは上の方にuse Carbon¥Carbon;を記述する。
次にfunction中に以下のように記述する。

$date = Carbon::createFromFormat('Y-m-d H:i:s', $user->created_at)->format('Y-m-d');

$user はそれぞれ使用したいデータベースのテーブル名などになるよ。

ちなみにCarbonについては下記を参照するとわかりやすいかも。
【Laravel】Carbonを初めて使ってみた

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?