current time in laravel migration

PHP
$table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));$table->timestamp('column_name')->useCurrent();$table->timestamp('created_at')->useCurrent();
Source

Also in PHP: