mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-05 01:04:36 -04:00
23 lines
364 B
PHP
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');
|
|
}
|
|
}
|