mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-19 04:50:42 +01:00
16 lines
287 B
PHP
16 lines
287 B
PHP
|
<?php
|
||
|
|
||
|
namespace Base;
|
||
|
|
||
|
abstract class Description extends Model
|
||
|
{
|
||
|
protected static function boot()
|
||
|
{
|
||
|
parent::boot();
|
||
|
|
||
|
static::addGlobalScope('descriptions', function (Builder $builder) {
|
||
|
$builder->where('is_descrizione', '=', 0);
|
||
|
});
|
||
|
}
|
||
|
}
|