openstamanager/src/Common/Model.php

47 lines
1.3 KiB
PHP

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.n.c.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace Common;
use Illuminate\Database\Eloquent\Model as Original;
abstract class Model extends Original
{
// Retrocompatibilità MySQL
public function setUpdatedAtAttribute($value)
{
// to Disable updated_at
}
/**
* Crea una nuova istanza del modello.
*
* @return static
*/
public static function build()
{
return new static();
}
public static function getTableName()
{
return with(new static())->getTable();
}
}