如何更改laravel模型中created_at和updated_at的格式?
在 laravel 响应中,我想获取“created_at”和“updated_at”的值,如下格式(没有秒):
2022-02-22 04:07
我尝试使用:
protected $casts = [
'created_at' => 'datetime:Y-m-d H:i',
'updated_at' => 'datetime:Y-m-d H:i'
];
但不起作用,日期时间仍然采用默认格式。
In laravel response I want to get values of "created_at" and 'updated_at" like this format (without seconds):
2022-02-22 04:07
I try to use :
protected $casts = [
'created_at' => 'datetime:Y-m-d H:i',
'updated_at' => 'datetime:Y-m-d H:i'
];
But not works, the datetime stills in default format.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用这样的东西:
使用这些
You can use something like this:
use these
如果您的“created_at”和“updated_at”字段是日期时间对象或碳实例,您可以简单地执行以下操作:
如果它既不是日期时间对象也不是碳实例,您需要将字符串转换为日期时间实例,如 @gguney 回答的那样。
您还可以在内部定义字段
注意:格式化值仅在您打印数据或转储时反映,如果该字段位于某个数组或集合内,您将无法看到格式,因为这些方法将在打印特定字段之前被调用。
If your 'created_at' and 'updated_at' fields are date time object or carbon instance you can simply do
if its neither date time object nor carbon instance you need to either convert your string to date time instance as @gguney answered .
You can also define the field inside
Note : The formatted values only reflect while you print the data or dump if the field is inside some array or collection you cannot see the format as these method will be called just before printing the specific field.