mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
13 lines
254 B
PHP
13 lines
254 B
PHP
<?php namespace App\Models;
|
|
|
|
class PaymentLibrary extends Eloquent
|
|
{
|
|
protected $table = 'payment_libraries';
|
|
public $timestamps = true;
|
|
|
|
public function gateways()
|
|
{
|
|
return $this->hasMany('Gateway', 'payment_library_id');
|
|
}
|
|
}
|