golf_backend/app/Models/Variable_model.php
2023-06-10 14:00:02 +05:30

13 lines
249 B
PHP

<?php namespace App\Models;
use CodeIgniter\Model;
class Variable_model extends Model
{
protected $table = 'email_template_variables';
protected $primaryKey = 'id';
protected $allowedFields = ['name','variable_name','type'];
}