17 lines
		
	
	
		
			278 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			278 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);
 | 
						|
    }
 | 
						|
}
 |