I want only use created_at , how to do it?
I know:
This can custom timestamps name
const CREATED_AT = \'created\'; const UPDATED_AT = \'updat
To disable only updated_at, you can override Model::setUpdatedAt() method, like following :
public function setUpdatedAt($value) { // Do nothing. }
Of course, if you wanted to do this for the created_at column, it's just as easy. And that's work for Laravel 5.1