如何更改laravel模型中created_at和updated_at的格式?

发布于 2025-01-10 13:53:57 字数 285 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌若浮生 2025-01-17 13:53:57

你可以使用这样的东西:

public function getCreatedAtAttribute($date)
{
    return Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d H:i');
}

public function getUpdatedAtAttribute($date)
{
    return Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d H:i');
}

使用这些

You can use something like this:

public function getCreatedAtAttribute($date)
{
    return Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d H:i');
}

public function getUpdatedAtAttribute($date)
{
    return Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d H:i');
}

use these

淑女气质 2025-01-17 13:53:57

如果您的“created_at”和“updated_at”字段是日期时间对象或碳实例,您可以简单地执行以下操作:

 public function getCreatedAtAttribute($date)
  {
    return  $date->format('Y-m-d H:i');
 }

 public function getUpdatedAtAttribute($date)
 {
   return $date->format('Y-m-d H:i');
 }

如果它既不是日期时间对象也不是碳实例,您需要将字符串转换为日期时间实例,如 @gguney 回答的那样。

您还可以在内部定义字段

protected $dates  = [ 'created_at' , 'updated_at'];

注意:格式化值仅在您打印数据或转储时反映,如果该字段位于某个数组或集合内,您将无法看到格式,因为这些方法将在打印特定字段之前被调用。

If your 'created_at' and 'updated_at' fields are date time object or carbon instance you can simply do

 public function getCreatedAtAttribute($date)
  {
    return  $date->format('Y-m-d H:i');
 }

 public function getUpdatedAtAttribute($date)
 {
   return $date->format('Y-m-d H:i');
 }

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

protected $dates  = [ 'created_at' , 'updated_at'];

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文