13 lines
272 B
PHP
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'];
|
|
|
|
|
|
} |