id(); $table->morphs('commentable'); $table->morphs('user'); $table->foreignId('parent_id') ->nullable() ->constrained(config('comments.tables.comments', 'comments')) ->cascadeOnDelete(); $table->text('body'); $table->timestamp('edited_at')->nullable(); $table->softDeletes(); $table->timestamps(); $table->index(['commentable_type', 'commentable_id', 'parent_id']); }); } };