具有关系的模型的自定义 field/column 属性

Custom field/column attribute for a model with relationships

我正在尝试弄清楚在设置具有关系的字段时如何必须创建自定义属性。

所以我有学生促销hasMany关系。现在我的问题是我想要的属性在另一个 model/table 中。例如,我需要腰带颜色,但腰带颜色未存储在 promotions.. promotion table 仅包含 belt_id。我需要从 belts table 中提取该腰带的颜色。我已经设置了所有关系,但我不知道如何操作属性。我希望这是有道理的。

$this->crud->addField([
    'label' => "Promotions",
    'type' => 'select2_multiple',
    'name' => 'promotion',
    'entity' => 'promotion', 
    'attribute' => 'name', // <- how can I make a custom query for this?
    'pivot' => true, 
]);

谢谢!

看起来我找到了解决方案并修复了一个小错误。至少它看起来像是一个错误,因为我找不到此功能的文档。我通过检查代码找到了它。无论如何,很酷的是我们可以用“.”链接关系,所以列设置将如下所示:

$this->crud->addColumn([
   'label' => "Rank", // Table column heading
   'type' => "select",
   'name' => 'promotion_id', // the column that contains the ID of that connected entity;
   'entity' => 'promotion.belt', // <- here I'm chaining the model relationships
   'attribute' => 'color', // the belt's attribute
   'model' => "App\Models\Promotion" // foreign key model
]);

理论上一切都应该工作正常,但位于 vendore\backpack\crud\src\CrudPanel.php:

的方法中存在一个小错误
private function getRelationModelInstances($model, $relationString)
{
    $relationArray = explode('.', $relationString);
    $firstRelationName = array_first($relationArray);

    // this is the line with the bug
    //$relation = $model->{$firstRelationName};

    // Fix the bug above
    if($model instanceof Collection) {
        $relation = $model->{$firstRelationName};
    } else {
        $relation = $model[$firstRelationName];
    }

    $results = [];
    if (! empty($relation)) {
        if ($relation instanceof Collection) {
            $currentResults = $relation->toArray();
        } else {
            $currentResults[] = $relation;
        }

        array_shift($relationArray);

        if (! empty($relationArray)) {
            foreach ($currentResults as $currentResult) {
                $results = array_merge($results, $this->getRelationModelInstances($currentResult, implode('.', $relationArray)));
            }
        } else {
            $results = $currentResults;
        }
    }


    return $results;
}

基本上这个递归函数在调用自身时将 $model 参数作为 array 而不是 object.. 所以当它试图从 $firstRelationName $model 像这样 $model->{$firstRelationName} 会导致错误。


同时我发现了一个更好的解决方案。为了实现相同的目标,我使用了 accessors.

在我的 promotion 模型中我有:

    /*
    |--------------------------------------------------------------------------
    | RELATIONS
    |--------------------------------------------------------------------------
    */
     public function belt()
    {
        return $this->belongsTo('App\Models\Belt');
    }

    /*
    |--------------------------------------------------------------------------
    | ACCESORS
    |--------------------------------------------------------------------------
    */
    public function getPromotionSummaryAttribute()
    {
        return $this->belt()->get()[0]->color . ', ' . $this->stripe . ' stripe';
    }

对于 students 我有:

    /*
    |--------------------------------------------------------------------------
    | RELATIONS
    |--------------------------------------------------------------------------
    */
    public function promotion()
    {
        return $this->hasMany('App\Models\Promotion');
    }

    /*
    |--------------------------------------------------------------------------
    | ACCESORS
    |--------------------------------------------------------------------------
    */

    public function GetLastPromotionAttribute()
    {
        return $this->promotion()->get()->last()->promotion_summary;
    }

列设置将像这样简单:

   $this->crud->addColumn([
        'name' => 'last_promotion', 
        'type' => 'text', 
        'label' => 'Rank'
   ]);

我希望这对外面的人有帮助:)