Currently, I am using
Carbon::now()
It Displays the date with the time
2015-03-10 23:23:46
But I only need a date
2015-03-10
http://carbon.nesbot.com/docs/#api-formatting
$dt = Carbon::now();
echo $dt->toDateString(); // Equivalent: echo $dt->format('Y-m-d');