Simply I can format PHP date such as:
$current_date_time = new DateTime("now");
$user_current_date = $current_date_time->format("Y-m-d");
to get toDay date. how to do this action by using Carbon
without time in date?
$now = Carbon::now();
echo $now; // 2015-11-11 12:38:36