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

后端 未结 6 519
陌清茗
陌清茗 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:22

    http://carbon.nesbot.com/docs/#api-formatting

    $dt = Carbon::now();
    echo $dt->toDateString(); // Equivalent: echo $dt->format('Y-m-d');
    

提交回复
热议问题