laravel db migration table comment code example
Example 1: How to set a comment on table using Laravel Schema
$table->string('product_name')->comment = "Product name column";
Example 2: laravel migration integer
$table->bigInteger('votes');
$table->string('product_name')->comment = "Product name column";
$table->bigInteger('votes');