1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/app/models/PaymentLibrary.php

11 lines
160 B
PHP
Raw Normal View History

<?php
class PaymentLibrary extends Eloquent
{
protected $table = 'payment_libraries';
public function gateways()
{
return $this->hasMany('Gateway');
}
}