0

我正在使用雄辩的 L5。在我的模型中,我为必要的数据库表字段定义了以下函数。

public function getBuyingDateAttribute($value)
{
    return Carbon::parse($value)->format('d/m/Y');
}

日期选择器

$( "#buying-date" ).datepicker({dateFormat: 'dd-mm-yy'});

我可以在我的表单中显示具有这种格式的当前值(使用表单模型绑定),但是当我尝试存储或更新该字段时,该值变为空。我是 Laravel 和 Eloquent 的新手。如何正确格式化和存储数据?任何帮助,将不胜感激。

4

1 回答 1

-1

如果在您的表单中日期列名称是日期,则在您的控制器中使用以下内容

$date = date('d/m/Y',strtotime($request->date));
//here $request is the object of Request class
于 2015-06-16T16:21:52.090 回答