📜  laravel 模型列默认值 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:12.605000             🧑  作者: Mango

代码示例2
class User extends Model {
    protected $attributes = [
       'is_author' => 0,
    ];
}