不同的日期格式(输入或仅显示文本)
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用强制转换数组定义模型上的默认格式日期
You can define the default format date on your model by using the cast array