id(); $table->string('title'); $table->text('content'); $table->string('slug')->unique(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists(Blog::tableName()); } };