How to get Current Timestamp from Carbon in Laravel 5

Abrar Jahin picture Abrar Jahin · Sep 22, 2015 · Viewed 151.2k times · Source

I want to get current timestamp in laravel 5 and I have done this-

$current_time = Carbon\Carbon::now()->toDateTimeString();

I am getting eror- 'Carbon not found'-

enter image description here

What can I do?

Can anyone help, please?

Answer

Md Rashedul Hoque Bhuiyan picture Md Rashedul Hoque Bhuiyan · Sep 22, 2015

You can try this if you want date time string:

use Carbon\Carbon;
$current_date_time = Carbon::now()->toDateTimeString(); // Produces something like "2019-03-11 12:25:00"

If you want timestamp, you can try:

use Carbon\Carbon;
$current_timestamp = Carbon::now()->timestamp; // Produces something like 1552296328

See the official Carbon documentation here.