invoiceninja/app/models/Gateway.php

12 lines
No EOL
189 B
PHP
Executable file

<?php
class Gateway extends Eloquent
{
public $timestamps = false;
protected $softDelete = false;
public function paymentlibrary()
{
return $this->belongsTo('PaymentLibrary');
}
}