Error column not found in Laravel
问题 This is my forumthread table: $table->increments('id'); $table->integer('user_id')->unsigned(); $table->foreign( 'user_id' )->references( 'id' )->on( 'users' ); $table->string('thread'); $table->string('slug'); $table->dateTime('published_at'); And this is my forumindex table: $table->increments('id'); $table->integer('user_id')->unsigned(); $table->foreign( 'user_id' )->references( 'id' )->on( 'users' ); $table->integer('forumthreads_id')->unsigned(); $table->foreign( 'forumthreads_id' )-