mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
9 lines
115 B
PHP
9 lines
115 B
PHP
<?php namespace App\Models;
|
|
|
|
use Eloquent;
|
|
|
|
class PaymentTerm extends Eloquent
|
|
{
|
|
public $timestamps = false;
|
|
}
|