mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 00:57:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			599 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			599 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com)
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| 
 | |
| /**
 | |
|  * Class PaymentLibrary.
 | |
|  */
 | |
| class PaymentLibrary extends BaseModel
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * @return \Illuminate\Database\Eloquent\Relations\HasMany
 | |
|      */
 | |
|     public function gateways()
 | |
|     {
 | |
|         return $this->hasMany(Gateway::class, 'payment_library_id');
 | |
|     }
 | |
| }
 |