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