阅读(3563) (7)

Laravel 8 默认属性值

2021-07-07 10:18:49 更新

如果要为模型的某些属性定义默认值,可以在模型上定义 $attributes 属性:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Flight extends Model
{
    /**
     * 模型属性的默认值
     *
     * @var array
     */
    protected $attributes = [
        'delayed' => false,
    ];
}