1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-19 04:50:42 +01:00
openstamanager/src/Base/Description.php

18 lines
330 B
PHP
Raw Normal View History

2018-09-25 16:47:44 +02:00
<?php
namespace Base;
2018-09-25 17:13:23 +02:00
use Illuminate\Database\Eloquent\Builder;
2018-09-25 16:47:44 +02:00
abstract class Description extends Model
{
protected static function boot()
{
parent::boot();
static::addGlobalScope('descriptions', function (Builder $builder) {
$builder->where('is_descrizione', '=', 0);
});
}
}