Answers for "fix timestamp laravel date"

PHP
1

laravel turn off timestamps

public $timestamps = false; (In the model which you need to disable)
Posted by: Guest on September-29-2021
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

Code answers related to "fix timestamp laravel date"

Browse Popular Code Answers by Language