mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 01:57:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			330 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			330 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class ProjectCode extends Eloquent
 | |
| {
 | |
| 	public $timestamps = false;
 | |
| 	protected $softDelete = false;
 | |
|     
 | |
|     public function account()
 | |
| 	{
 | |
| 		return $this->belongsTo('Account');
 | |
| 	}
 | |
| 
 | |
| 	public function user()
 | |
| 	{
 | |
| 		return $this->belongsTo('User');
 | |
| 	}
 | |
|     
 | |
|     public function project()
 | |
| 	{
 | |
| 		return $this->belongsTo('Project');
 | |
| 	}
 | |
| } |