在 Eloquent 资源中使用分页会在 Laravel 中引发未定义的 属性 $id 错误

Using pagination in Eloquent resource throws Undefined Property $id error in Laravel

我正在尝试在 Laravel 5.7 中构建一个应用程序,其中我有一个名为 CompanyBehaviour:

的模型
protected $table = 'company_behaviour';

protected $guarded= [];

public function companies()
{
    return $this->belongsTo('Noetic\Plugins\Conxn\Models\Company','company_id','id');
}

public function companyRole()
{
    return $this->belongsTo('Noetic\Plugins\Conxn\Models\Variables\Company\Role', 'company_role_id', 'id');
}

public function companySpecialisation()
{
    return $this->belongsTo('Noetic\Plugins\Conxn\Models\Variables\Company\Role', 'company_specialisation_id', 'id');
}

我有一个资源文件:

class CompanyBehaviourResource extends JsonResource
{
    /**
     * Transform the resource into an array.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array
     */
    public function toArray($request)
    {
        return [
            'id' => $this->id,
            'company' => $this->company->name,
            'company_role' => $this->companyRole->name,
            'company_specialisation' => $this->companySpecialisation->name,
        ];
    }
}

在我的控制器中获取数据时我需要使用它:

public function index(Request $request)
{

    return new CompanyBehaviourResource(CompanyBehaviour::whereHas('companies', function ($q) use($request) {
        $q->where('name', 'like', '%'.$request->search.'%');
    })->orderBy('created_at', 'desc')
        ->paginate(20)
    );
}

但是当我调用它时出现分页错误:

Undefined property: Illuminate\Pagination\LengthAwarePaginator::$id

轨迹表示:

class: "Illuminate\Http\Resources\Json\JsonResource"
file: "D:\~Resource\CompanyBehaviourResource.php"
function: "__get"
line: 17
type: "->"

说明'id' => $this->id,这一行。我浏览了 Laravel Resource API 的文档,但找不到我哪里做错了。帮我解决这个问题。谢谢。

您调用 returns eloquent 集合,而不是单个结果,因此不保存 $id 属性。 您应该改为调用收集方法:

public function index(Request $request)
{

    return new CompanyBehaviourResource::collection(CompanyBehaviour::whereHas('companies', function ($q) use($request) {
        $q->where('name', 'like', '%'.$request->search.'%');
    })->orderBy('created_at', 'desc')
        ->paginate(20)
    );
}