mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:57:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			232 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			232 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class PaymentLibrary extends Eloquent
 | |
| {
 | |
|     protected $table = 'payment_libraries';
 | |
|     public $timestamps = true;
 | |
| 
 | |
|     public function gateways()
 | |
|     {
 | |
|         return $this->hasMany('Gateway', 'payment_library_id');
 | |
|     }
 | |
| }
 |