I have a table with a column \'hotel\'. The project is created in Laravel 5.4, so I used Migrations.
$table->string(\'hotel\', 50);
Thi
change the type of column fromstring to text.
string
text
Then run a migrate refresh using php artisan migrate:refesh
php artisan migrate:refesh