伙伴们,我收到错误sqlstate 42s22 columnactivity_post_commentsnot found 1054 unknown column in 'field list'
但是这个列名存在于我的数据库中。
我检查了我的数据库并检查了拼写错误,但我仍然收到此错误
public function storecomments(Request $request, $id)
{
// Create Comment
$activity_post = new ActivityPost;
$activity_post->activity_post_comments = $request->input('activity_post_comments');
$activity_post->activity_post_id = $id;
$activity_post->user_id = auth()->user()->id;
$activity_post->save();
return redirect()->back()->with('success', 'Comment Added');
}
不知道为什么我收到这个错误所以我不能在我的数据库中保存这个值
模型:
class ActivityPostComment extends Model
{
use SoftDeletes;
// Table Name
protected $table = 'activity_post_comments';
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = ['deleted_at'];
public function post(){
return $this->belongsTo('App\ActivityPost');
}
}
缥缈止盈