connection
/**
* 为模型指定一个连接名称。
*
* @var string
*/
protected $connection = 'connection-name';
table
/**
* 为模型指定一个表名。
*
* @var string
*/
protected $table = 'users';
primaryKey
/**
* 为模型指定主键。
*
* @var string
*/
protected $primaryKey = 'user_id';
keyType
/**
* 自定义主键类型。
*
* @var string
*/
protected $keyType = 'string';
incrementing
/**
* 如果使用的是非递增或者非数字的主键。
*
* @var bool
*/
public $incrementing = false;
with
class Post extends Model
{
/**
* 加载模型关联数据。
*
* @var array
*/
protected $with = [
'comments'
];
}
《模型关联给我们带来了哪些便利》 有介绍 with
的用法噢。
withCount
class Post extends Model
{
/**
* 加载模型关联数据数量。
*
* @var array
*/
protected $withCount = [
'comments'
];
}
timestamps
/**
* 执行模型是否自动维护时间戳.
*
* @var bool
*/
public $timestamps = false;
fillable
/**
* 可以被批量赋值的属性。
*
* @var array
*/
protected $fillable = ['name', 'age'];
guarded
/**
* 不可被批量赋值的属性,当 $guarded 为空数组时则所有属性都可以被批量赋值。
*
* @var array
*/
protected $guarded = ['price'];
guarded
与 fillable
,在当前模型中只能存在一者噢。
CREATED_AT
/**
* 创建时间戳字段名称。
*
* @var string
*/
const CREATED_AT = 'created_at';
UPDATED_AT
/**
* 更新时间戳字段名称。
*
* @var string
*/
const UPDATED_AT = 'updated_at';
attributes
const STATUS_CREATED = 'created';
/**
* 给定字段默认值。
*
* @var array
*/
protected $attributes = [
'status' => self::STATUS_CREATED,
];
casts
/**
* 字段转换为对应的类型。
*
* @var array
*/
protected $casts = [
'id' => 'integer',
'settings' => 'array',
'is_admin' => 'boolean',
];
dates
/**
* 需要转换成日期的属性。
*
* @var array
*/
protected $dates = ['deleted_at'];
dateFormat
/**
* 模型中日期字段的保存格式。
*
* @var string
*/
protected $dateFormat = 'U';
不清楚 U
是什么意思的,请看 Date/Time 函数 。
appends
/**
* 追加到模型数组表单的访问器。
*
* @var array
*/
protected $appends = ['is_admin'];
一般情况下 appends
都是与 访问器连用的。
hidden
/**
* 数组中的属性会被隐藏。
*
* @var array
*/
protected $hidden = ['password'];
visible
/**
* 数组中的属性会被展示。
*
* @var array
*/
protected $visible = ['first_name', 'last_name'];
dispatchesEvents
/**
* 模型的事件映射。
*
* @var array
*/
protected $dispatchesEvents = [
'saved' => UserSaved::class,
'deleted' => UserDeleted::class,
];
forceDeleting
/**
* 指示模型当前是否强制删除。
*
* @var bool
*/
protected $forceDeleting = false;
perPage
/**
* 默认分页数量。
*
* @var int
*/
protected $perPage = 50;
touches
/**
* 更新添加的关联模型的 updated_at 字段。
*
* @var array
*/
protected $touches = ['post'];
网友评论