Answers for "get current timestamp in laravel 9"

PHP
3

laravel current timestamp

use Carbon\Carbon;
$current_date_time = Carbon::now()->toDateTimeString(); // Produces something like "2019-03-11 12:25:00"
Posted by: Guest on March-03-2021
1

laravel timestamp

use Carbon\Carbon;
$current_timestamp = Carbon::now()->timestamp; // Produces something like 1552296328
Posted by: Guest on November-27-2021

Code answers related to "get current timestamp in laravel 9"

Browse Popular Code Answers by Language