I need to change with migration column type of $table->string(\'text\'); to a text type, I have tried to do that in few ways, but none of them worked. Is it poss
$table->string(\'text\');
According to Laravel Doc
You can do it like
Schema::table('yourTable', function (Blueprint $table) { $table->text('text')->change(); });
be sure to add the doctrine/dbal dependency to your composer.json file