第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在子類中擴(kuò)展 PHP Laravel 模型的可填寫字段?

如何在子類中擴(kuò)展 PHP Laravel 模型的可填寫字段?

PHP
月關(guān)寶盒 2023-04-21 14:02:27
我嘗試用其他一些領(lǐng)域擴(kuò)展一個(gè) extintig ˙PHP` Laravel 模型,但我沒有找到正確的解決方案。我使用 PHP 7.1 和 Laravel 6.2這是我的代碼,解釋了我想做什么。原始模型:<?phpnamespace App;use App\Scopes\VersionControlScope;use Illuminate\Database\Eloquent\Model;class Product extends Model{    protected $fillable = [        'product_id',        'name',        'unit',        // ...    }    // ... relations, custom complex functions are here}正如我想象的如何擴(kuò)展原始模型:<?phpnamespace App;class ProductBackup extends Product{    protected $fillable = array_merge(        parent::$fillable,        [            'date_of_backup',        ]    );    // ...}但是現(xiàn)在我收到Constant expression contains invalid operations錯(cuò)誤消息。$fillable我可以在子類中以某種方式擴(kuò)展原始模型的數(shù)組嗎?
查看完整描述

1 回答

?
ITMISS

TA貢獻(xiàn)1871條經(jīng)驗(yàn) 獲得超8個(gè)贊

在你的子類構(gòu)造函數(shù)中,你可以使用mergeFillable來自 trait 的方法Illuminate\Database\Eloquent\Concerns\GuardsAttributes(自動(dòng)適用于每個(gè) Eloquent 模型)。


/**

     * Create a new Eloquent model instance.

     *

     * @param  array  $attributes

     * @return void

     */

    public function __construct(array $attributes = [])

    {

        parent::__construct($attributes);


        $this->mergeFillable(['date_of_backup']);

    }


查看完整回答
反對(duì) 回復(fù) 2023-04-21
  • 1 回答
  • 0 關(guān)注
  • 137 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)