id(); $table->morphs('commentable'); $table->string('name_surname'); $table->string('phone'); $table->text('body'); $table->text('admin_reply')->nullable(); $table->boolean('is_approved')->default(false); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('comments'); } };