Search code examples
laravellaravel-5laravel-4

Laravel needs to display only the date not the time using the Carbon class


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


Solution

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

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