Laravel and carbon date fieldsBy ariz21/06/2016LaravelIf you have date columns in your table then you should define them as dates in your model. Eg.class Photo extends Model { protected $dates = [ 'date_taken' ]; }