gpt4 book ai didi

laravel-5 - 如何在laravel的数据透视表中获取created_at

转载 作者:行者123 更新时间:2023-12-03 18:25:31 28 4
gpt4 key购买 nike

我很困惑如何获得 created_at我的专栏 pivot table 。我有 exam_user表带 created_atupdated_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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com