Files
click-erp/app/Models/PaymentType.php
2023-02-22 07:48:50 +00:00

12 lines
180 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PaymentType extends Model
{
protected $guarded = array('id');
public $table = "payment_type";
}