mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 08:07:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			222 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			222 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| class InvoiceItem extends EntityModel
 | |
| {
 | |
|     public function invoice()
 | |
|     {
 | |
|         return $this->belongsTo('Invoice');
 | |
|     }
 | |
| 
 | |
|     public function product()
 | |
|     {
 | |
|         return $this->belongsTo('Product');
 | |
|     }
 | |
| }
 |