Answers for "how to insert current date and time in timestamp in laravel"

PHP
0

insert timestamps manually in laravel

// if you would set local timezon otherwise skip this
$timezone = "Asia/Dhaka";
date_default_timezone_set($timezone);
// insert created_at value manually
DB::table('table')->insert([
	'key'=> 'value',
  	'created_at' => date("Y-m-d H:i:s", strtotime('now'))
]);
Posted by: Guest on December-02-2021
2

laravel insert timestamp now

Information::create([
  'data_now'=>Carbon\Carbon::now()
])
Posted by: Guest on May-22-2021

Code answers related to "how to insert current date and time in timestamp in laravel"

Browse Popular Code Answers by Language