Laravel 8 默認(rèn)屬性值

2021-07-19 11:23 更新

如果要為模型的某些屬性定義默認(rèn)值,可以在模型上定義 $attributes 屬性:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * 模型屬性的默認(rèn)值
     *
     * @var array
     */
    protected $attributes = [
        'delayed' => false,
    ];
} 
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)