不同的日期格式(输入或仅显示文本)

发布于 2025-01-10 19:23:58 字数 314 浏览 0 评论 0原文

我有 2 个字段(started_at 和ends_at),我想格式化它们

为此,我使用此访问器:

public function getStartedAtAttribute($value): string
{
  return Carbon::parse($value)->format('Y-m-d\TH:i');
}

这适用于“\T”输入,但不适用于简单文本

如果我删除“\T”,则这是不适用于输入(类型 = datetimelocal)

如何区分输入或简单文本?

预先感谢您的帮助

I have 2 fields (started_at and ends_at), and I want to format them

For that, I use this accessor :

public function getStartedAtAttribute($value): string
{
  return Carbon::parse($value)->format('Y-m-d\TH:i');
}

This is working for input with "\T" but not working for simple text

If I remove "\T", this is not working for input (type = datetimelocal)

How can I differentiate input or simple text ?

Thanks in advance for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

潦草背影 2025-01-17 19:23:58

您可以使用强制转换数组定义模型上的默认格式日期

protected $casts = [
    'started_at' => 'datetime:Y-m-d',
];

You can define the default format date on your model by using the cast array

protected $casts = [
    'started_at' => 'datetime:Y-m-d',
];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文