invoiceninja/app/models/Gateway.php

12 lines
189 B
PHP
Executable File

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