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

13 lines
272 B
PHP

<?php namespace App\Models;
use CodeIgniter\Model;
class Email_template_model extends Model
{
protected $table = 'email_template';
protected $primaryKey = 'id';
protected $allowedFields = ['name','to','html','text', 'type' ,'subject','is_active'];
}