1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-15 11:00:48 +01:00

46 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2020-09-07 15:04:06 +02:00
/*
* 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 Models;
2018-12-29 12:03:22 +01:00
use Common\Model;
2020-09-22 14:54:14 +02:00
use Util\Query;
class Clause extends Model
{
protected $table = 'zz_group_module';
/* Relazioni Eloquent */
public function groups()
{
return $this->hasMany(Group::class, 'idgruppo');
}
public function module()
{
2018-10-25 16:57:39 +02:00
return $this->belongsTo(Module::class, 'idmodule');
}
public function getClauseAttribute($value)
{
2020-09-22 14:54:14 +02:00
return Query::replacePlaceholder($value);
}
}