mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
11 lines
160 B
PHP
11 lines
160 B
PHP
|
<?php
|
||
|
|
||
|
class PaymentLibrary extends Eloquent
|
||
|
{
|
||
|
protected $table = 'payment_libraries';
|
||
|
|
||
|
public function gateways()
|
||
|
{
|
||
|
return $this->hasMany('Gateway');
|
||
|
}
|
||
|
}
|