nhance/app/Models/NotificationModel.php
2025-01-20 14:24:27 +05:30

12 lines
356 B
PHP
Executable File

<?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",'mail_content_json'];
}