Can I map Laravel\'s timestamps from:
created_at to post_date and post_date_gmt?
updated_at to post
Just put this in your tables model file,
const CREATED_AT = 'your_custom_created_at_field_name';
const UPDATED_AT = 'your_custom_updated_at_field_name';
My model looks like this for avoiding confusions
class diarymodule extends Model
{
protected $table = 'diarymodule';
const CREATED_AT = 'CreatedDate';
const UPDATED_AT = 'UpdatedDate';
}