laravel中的日期格式

laravel中的日期格式,laravel,date-format,Laravel,Date Format,我尝试验证POST请求。 格式为: public function setDateDebutAttribute($value) { $this->attributes['date_debut'] = $value ? Carbon::createFromFormat(config('panel.date_format'), $value)->format('Y-m-d') : null; } 我收到以下错误消息: 首次亮相日期不是d-m-Y.te格式

我尝试验证POST请求。 格式为:

public function setDateDebutAttribute($value)
    {
        $this->attributes['date_debut'] = $value ? Carbon::createFromFormat(config('panel.date_format'), $value)->format('Y-m-d') : null;
    }
我收到以下错误消息: 首次亮相日期不是d-m-Y.te格式


如何更改
dd/mm/yyyy

中的日期格式尝试一下,我认为这是可行的

public function setDateDebutAttribute($value)
    {
        $this->attributes['date_debut'] = $value ? Carbon::parse($value)->format('d-m-Y') : null;
    }

config('panel.date_format')和$value的值是多少您还可以执行类似于
$value的操作?日期(配置('panel.date_format'),strotime($value)):空