Comment supprimer Updated_at ou utiliser uniquement Created_at Laravel Eloquent Orm

public $timestamps = ["created_at"]; //only want to used created_at column
const UPDATED_AT = null; //and updated by default null set
Cleo