laravel model column default value
class User extends Model {
protected $attributes = [
'is_author' => 0,
];
}
laravel model column default value
class User extends Model {
protected $attributes = [
'is_author' => 0,
];
}
set default value for column in laravel model
protected $attributes = [
'your_field_name' => 'default value'
];
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;
});
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us