Answers for "elloquent default value"

SQL
1

created_at default value laravel

$table->timestamp('created_at')->useCurrent();
Posted by: Guest on October-09-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 "SQL"

Browse Popular Code Answers by Language