laravel date and time migrations code example
Example 1: current time in laravel migration
$table->timestamp('column_name')->useCurrent();
Example 2: how to use datetime.now in migration laravel
Laravel Migration Datetime Now
$table->timestamp('column_name')->useCurrent();
Laravel Migration Datetime Now