get current timestamp in laravel code example
Example 1: laravel current timestamp
use Carbon\Carbon;
$current_date_time = Carbon::now()->toDateTimeString(); // Produces something like "2019-03-11 12:25:00"
Example 2: current timestamp carbon
Carbon::now()->timestamp