Laravel 8 Date 类型转换
2021-07-19 11:45 更新
当使用 date
或 datetime
属性时,可以指定日期的格式。 这种格式会被用在 模型序列化为数组或者 JSON:
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
'created_at' => 'datetime:Y-m-d',
];
以上内容是否对您有帮助:
更多建议: