Answers for "default value laravel"

PHP
5

laravel migration set default value

$table->string('name')->default('Hello World!');
Posted by: Guest on May-12-2020
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 "default value laravel"

Browse Popular Code Answers by Language