<?php

namespace App\Models\Sales;

use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Contracts\Auditable;
use OwenIt\Auditing\Auditable as AuditableTrait;

class PaymentType extends Model implements Auditable
{
	use AuditableTrait;
    protected $table='payment_type';
    protected $primaryKey = 'id';
    protected $fillable = ['type'];
    
}
