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