15 lines
366 B
PHP
15 lines
366 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class TemplateModel extends Model
|
|
{
|
|
protected $table = 'template';
|
|
protected $primaryKey = 'template_id';
|
|
|
|
protected $allowedFields = ['service_group_id','service_id','template_name','template_header_business','header_type','body_text','body_html', 'is_active' ,'created_by','updated_by'];
|
|
|
|
|
|
|
|
|
|
} |