nhance-enrollment/app/Models/NotificationModel.php
2025-02-17 12:43:20 +05:30

12 lines
369 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','mail_content_copy'];
}