laravel insert timestamps code example
Example 1: laravel add timestamps to existing table
$table->dateTime('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->dateTime('updated_at')->nullable();
Example 2: laravel insert timestamp now
Information::create([
'data_now'=>Carbon\Carbon::now()
])