laravel need to display only date not time using the carbon class

后端 未结 6 607
陌清茗
陌清茗 2021-02-01 12:40

currently i am using

Carbon::now()

it displays

2015-03-10 23:23:46

but i only need

6条回答
  •  耶瑟儿~
    2021-02-01 13:23

    Or you can use this,

    echo Carbon::createFromFormat('Y-m-d H', '1975-05-21 22')->toDateTimeString();
     // 1975-05-21 22:00:00
    

    Example,

    {{ $post->created_at->toDayDateTimeString()}}
    

    Carbon Docs Source Link

提交回复
热议问题