invoiceninja/app/Models/PaymentType.php
2016-09-15 13:41:09 +03:00

23 lines
364 B
PHP

<?php namespace App\Models;
use Eloquent;
/**
* Class PaymentType
*/
class PaymentType extends Eloquent
{
/**
* @var bool
*/
public $timestamps = false;
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function gatewayType()
{
return $this->belongsTo('App\Models\GatewayType');
}
}