mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:57:32 -04:00 
			
		
		
		
	* Wired up Bulk Archive / Delete / Restore button with reactivity on checkbox actions * Working on POSTing bulk actions * Working on Filtering by status * Add Action Entity * Implement Vuex for state management * Implement Vuex storage & list view bulk actions * Clean up console logs * Configure entity list views server side
		
			
				
	
	
		
			36 lines
		
	
	
		
			728 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			728 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Relations\Pivot;
 | |
| 
 | |
| class CompanyUser extends Pivot
 | |
| {
 | |
|     protected $guarded = ['id'];
 | |
| 
 | |
| 
 | |
|     /**
 | |
|      * The attributes that should be cast to native types.
 | |
|      *
 | |
|      * @var array
 | |
|      */
 | |
|     protected $casts = [
 | |
|         'settings' => 'collection',
 | |
|     ];
 | |
| 
 | |
|     public function account()
 | |
|     {
 | |
|         return $this->hasOne(Account::class);
 | |
|     }
 | |
| 
 | |
|     public function user()
 | |
|     {
 | |
|         return $this->hasOne(User::class)->withPivot('permissions', 'settings', 'is_admin', 'is_owner', 'is_locked');
 | |
|     }
 | |
| 
 | |
|     public function company()
 | |
|     {
 | |
|     	return $this->hasOne(Company::class)->withPivot('permissions', 'settings', 'is_admin', 'is_owner', 'is_locked');
 | |
|     }
 | |
| }
 |