Answers for "timestamp where in laravel"

PHP
2

laravel insert timestamp now

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

laravel current timestamp

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

Browse Popular Code Answers by Language