Answers for "store current timestamp laravel"

PHP
2

laravel insert timestamp now

Information::create([
  'data_now'=>Carbon\Carbon::now()
])
Posted by: Guest on May-22-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 "store current timestamp laravel"

Browse Popular Code Answers by Language