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