如何在Laravel模型

时间:2016-10-07 08:02:59

标签: php laravel laravel-5

如何在Laravel模型上设置属性的默认值?

我应该在创建迁移时设置默认值,还是应该在模型类中设置它?

3 个答案:

答案 0 :(得分:58)

您也可以在模型中设置默认属性>

protected $attributes = [
        'status' => self::STATUS_UNCONFIRMED,
        'role_id' => self::ROLE_PUBLISHER,
    ];

您可以在这些链接中找到详细信息

1。)How to set a default attribute value for a Laravel / Eloquent model?

2。)https://laracasts.com/index.php/discuss/channels/eloquent/eloquent-help-generating-attribute-values-before-creating-record

你也可以使用 Accessors&突变者为此 您可以在Laravel文档中找到详细信息 1.)https://laravel.com/docs/4.2/eloquent#accessors-and-mutators

2。)https://scotch.io/tutorials/automatically-format-laravel-database-fields-with-accessors-and-mutators

3。)Universal accessors and mutators in Laravel 4

答案 1 :(得分:13)

其他答案对我不起作用 - 它们可能已经过时了。这就是我用作自动设置属性的解决方案:

/**
 * The "booting" method of the model.
 *
 * @return void
 */
protected static function boot()
{
    parent::boot();

    // auto-sets values on creation
    static::creating(function ($query) {
        $query->is_voicemail = $query->is_voicemail ?? true;
    });
}

答案 2 :(得分:9)

您应该在migrations中设置默认值:

$table->tinyInteger('role')->default(1);