当pivotloaded无法正常工作。始终返回空白

发布于 2025-01-23 08:56:54 字数 872 浏览 0 评论 0原文

这是我的reportresource文件

public function toArray($request)
    {   
        return [
            'id' => $this->id,
            'name' => $this->cname,
            'start' => $this->whenPivotLoaded('company_package', function () {
                return $this->pivot->start_date;
            }),
        ];
    }

公司模型

class Company extends Model
{
    //
    public function packages(){
        return $this->belongsToMany('App\Package')->withPivot('start_date');
    }
}

软件包模型

class Package extends Model
{
    public function companies(){
        return $this->belongsToMany('App\Company')->withPivot('start_date');
    }
}

控制器

return new ReportResource(Company::with('packages')->get());

我在做错了什么。请帮助

This is my ReportResource file

public function toArray($request)
    {   
        return [
            'id' => $this->id,
            'name' => $this->cname,
            'start' => $this->whenPivotLoaded('company_package', function () {
                return $this->pivot->start_date;
            }),
        ];
    }

Company Model

class Company extends Model
{
    //
    public function packages(){
        return $this->belongsToMany('App\Package')->withPivot('start_date');
    }
}

Package Model

class Package extends Model
{
    public function companies(){
        return $this->belongsToMany('App\Company')->withPivot('start_date');
    }
}

Controller

return new ReportResource(Company::with('packages')->get());

What I am doing wrong .Please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文