作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很困惑如何获得 created_at
我的专栏 pivot
table 。我有 exam_user
表带 created_at
和 updated_at
柱子。现在,我在我看来有这个代码:
@if($exam->users()->where('user_id', Auth::user()->id)->exists())
{{ Auth::user()->assignments()->pivot->created_at }}
<div class="alert alert-success">You have done with this exam.</div>
@else
最佳答案
在设置关系时,您需要指定该数据透视表是否具有时间戳。
public function things() {
return $this->belongsToMany('App\Thing')->withTimestamps();
}
Auth::user()->assignments()->first()->pivot->created_at
关于laravel-5 - 如何在laravel的数据透视表中获取created_at,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44254131/
我是一名优秀的程序员,十分优秀!