. */ namespace Common; trait SimpleModelTrait { // Retrocompatibilità MySQL public function setUpdatedAtAttribute($value) { // to Disable updated_at } public static function getTableName() { return with(new static())->getTable(); } /** * Crea una nuova istanza del modello. * * @return static */ public static function build() { return new static(); } }