We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hello,
In Laravel Eloquent you are able to change the created_at and updated_at column by doing the following:
created_at
updated_at
const CREATED_AT = 'post_date'; const UPDATED_AT = 'post_modified';
However, laravel-mongodb seems to be ignoring this. Is there any way to change these columns?
Thank You