Modifier la limite VARCHAR dans le fichier de migration.
Schema::create('posts', function (Blueprint $table) {
$table->string('title', 50);
});
Graceful Gazelle
Schema::create('posts', function (Blueprint $table) {
$table->string('title', 50);
});