这是我的forumthread
表:
$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');
这是我的
forumindex
表: $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' )->references( 'id' )->on( 'forumthreads' );
$table->string('slug');
$table->string('title');
$table->text('body');
$table->dateTime('published_at');
在我的
forumthread
表中,我有一个hasmany('forumindex');
和一个forumindex
表。当我渲染视图时,它会显示
belongsTo('forumthread');
。这是景色:
@foreach($thread->forumindex()->orderBy('created_at', 'desc')->paginate(9) as $forumindex)
<p>{{ $forumindex->title }}</p>
@endforeach
我错过了什么?
最佳答案
我在没有s的数据库上重新创建线程及其解决方法
关于php - 在Laravel中找不到错误列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36642130/