string('slug')->index(); $table->string('title'); $table->boolean('visibility'); $table->longText('content'); $table->charset = 'utf8mb4'; $table->collation = 'utf8mb4_unicode_ci'; }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pages'); } }