我正在使用 Sentinel 对我的评分系统项目进行身份验证,并添加了社交网络系统和高级身份验证系统等附加功能,我的问题是:
$post = new Post;
$post->title=$request->title;
$post->body=$request->body;
$post->user_id = auth()->user()->id; //need to convert into a cartalyst way
$post->save();
我希望将 user 表的 id 保存在user_id
posts 表中。