mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
16 lines
277 B
PHP
16 lines
277 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
trait CompanyableChildTrait
|
|
{
|
|
/**
|
|
* Boot the companyable trait for a model.
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function bootCompanyableChildTrait()
|
|
{
|
|
static::addGlobalScope(new CompanyableChildScope);
|
|
}
|
|
}
|