Laravel 8 Date 类型转换
当使用 date
或 datetime
属性时,可以指定日期的格式。 这种格式会被用在 模型序列化为数组或者 JSON:
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
'created_at' => 'datetime:Y-m-d',
];
当使用 date
或 datetime
属性时,可以指定日期的格式。 这种格式会被用在 模型序列化为数组或者 JSON:
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
'created_at' => 'datetime:Y-m-d',
];