<?php

namespace App\Models\Sales;

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

class PaymentMethod extends Model implements Auditable
{
	use AuditableTrait;
    protected $table='payment_method';
    protected $primaryKey = 'id';
    protected $fillable = ['method'];
    
}
