the_mechanic/app/Models/AdditionalProductNameModal.php

27 lines
574 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class AdditionalProductNameModal extends Model
{
protected $table = 'product_names';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $returnType = 'array';
protected $useSoftDeletes = false;
protected $protectFields = true;
protected $allowedFields = [
'product_names_id',
'product_id',
'model_id',
'additional_product_name',
'isactive',
'created_at',
'updated_at',
];
}