1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/models/PaymentLibrary.php

13 lines
232 B
PHP
Raw Normal View History

<?php
class PaymentLibrary extends Eloquent
{
2015-01-11 13:30:08 +01:00
protected $table = 'payment_libraries';
public $timestamps = true;
2015-01-11 13:30:08 +01:00
public function gateways()
{
return $this->hasMany('Gateway', 'payment_library_id');
}
}