create table with current timestamp laravel code example
Example 1: mysql timestamp in laravel migration
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
Example 2: laravel insert timestamp now
Information::create([
'data_now'=>Carbon\Carbon::now()
])