mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			192 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			192 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
class InvoiceItem extends EntityModel
 | 
						|
{
 | 
						|
	public function invoice()
 | 
						|
	{
 | 
						|
		return $this->belongsTo('Invoice');
 | 
						|
	}	
 | 
						|
 | 
						|
	public function product()
 | 
						|
	{
 | 
						|
		return $this->belongsTo('Product');
 | 
						|
	}
 | 
						|
} |