mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:37:33 -05: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');
 | 
						|
    }
 | 
						|
}
 |