I have one more field on the database over the created_at
and updated_at
as TIMESTAMP
the field name is date.
So i overwritten the method getDates()
on my model eloquent because i wanted that field be instantiated from Carbon.
public function getDates()
{
return ['date','created_at','updated_at'];
}
But when i go to create a new record on the database it throw me an exception:
InvalidArgumentException Unexpected data found. Unexpected data found. Unexpected data found.
Ps: the value sent from the form is in EU format: d-m-Y h:i
I don't know how figure out this problem any suggestion are appreciated