Answers for "How to set the default value of an attribute on a Laravel model"

PHP
0

How to set the default value of an attribute on a Laravel model

/**
 * 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;
    });
}
Posted by: Guest on July-06-2021

Code answers related to "How to set the default value of an attribute on a Laravel model"

Browse Popular Code Answers by Language