12 lines
330 B
PHP
12 lines
330 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class NotificationModel extends Model
|
|
{
|
|
protected $table = 'notifications';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = ["id","client_id","template_name","subject","mail_content","enabled","created_by","updated_by","is_active",];
|
|
} |