欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  神坛PHP

模型的属性介绍

程序员文章站 2021-12-23 21:09:24
...


* 为模型指定一个连接名称。

protected $connection = 'connection-name';

 * 为模型指定一个表名。

protected $table = 'users';

 * 为模型指定主键。

 protected $primaryKey = 'user_id';

 * 自定义主键类型。

protected $keyType = 'string';

 * 如果使用的是非递增或者非数字的主键。

public $incrementing = false;

  * 加载模型关联数据。

  protected $with = [

      'comments'

  ];

  * 加载模型关联数据数量。

  protected $withCount = [

      'comments'

  ];

 * 执行模型是否自动维护时间戳.

public $timestamps = false;

注:guarded 与 fillable,在当前模型中只能存在一者噢。

 * 可以被批量赋值的属性。

 protected $fillable = ['name', 'age'];

 * 不可被批量赋值的属性,当 $guarded 为空数组时则所有属性都可以被批量赋值。

protected $guarded = ['price'];

 * 创建时间戳字段名称。

const CREATED_AT = 'created_at';

 * 更新时间戳字段名称。

const UPDATED_AT = 'updated_at';

 * 给定字段默认值。

protected $attributes = [

    'status' => self::STATUS_CREATED,

];

 * 字段转换为对应的类型。

protected $casts = [

   'id' => 'integer',

   'settings' => 'array',

   'is_admin' => 'boolean',

];

 * 需要转换成日期的属性。

protected $dates = ['deleted_at'];

 * 模型中日期字段的保存格式。

protected $dateFormat = 'U';

不清楚 U 是什么意思的,请看 Date/Time 函数 。

 * 追加到模型数组表单的访问器。

protected $appends = ['is_admin'];

一般情况下 appends 都是与 访问器 连用的。

 * 数组中的属性会被隐藏。

protected $hidden = ['password'];

 * 数组中的属性会被展示。

protected $visible = ['first_name', 'last_name'];

 * 模型的事件映射。

protected $dispatchesEvents = [

    'saved' => UserSaved::class,

    'deleted' => UserDeleted::class,

];

 * 指示模型当前是否强制删除。

protected $forceDeleting = false;

 * 默认分页数量。

protected $perPage = 50;

  * 更新添加的关联模型的 updated_at 字段。

 protected $touches = ['post'];


相关标签: 模型