Laravel Alterar string para texto
Schema::table('yourTable', function (Blueprint $table) {
$table->text('body')->nullable()->change();
});
Pinchy Crab
Schema::table('yourTable', function (Blueprint $table) {
$table->text('body')->nullable()->change();
});