How can i add a comment Like this Comment. my Code:
$table->string('stock_type');
CodePudding user response:
$table->string('field')->comment('some comment');
CodePudding user response:
$table->string('stock_type')->comment('this is comment');