id(); $table->foreignId('post_id')->constrained(); $table->string('author_name'); $table->string('body'); $table->boolean('is_approved')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('comments'); } };