Docker/Productivite/Snipe-IT/app/Models/CompanyableTrait.php
2024-04-21 14:42:52 +02:00

17 lines
263 B
PHP

<?php
namespace App\Models;
trait CompanyableTrait
{
/**
* Boot the companyable trait for a model.
*
* @return void
*/
public static function bootCompanyableTrait()
{
static::addGlobalScope(new CompanyableScope);
}
}