mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:37:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			306 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			306 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;
 | 
						|
    }
 | 
						|
    
 | 
						|
}
 |