1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 18:27:10 +02:00
invoiceninja/app/Models/PaymentTerm.php
2016-01-07 20:39:51 +01:00

18 lines
304 B
PHP

<?php namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
class PaymentTerm extends EntityModel
{
use SoftDeletes;
public $timestamps = true;
protected $dates = ['deleted_at'];
public function getEntityType()
{
return ENTITY_PAYMENT_TERM;
}
}