nhance/app/Models/NotificationModel.php
2024-05-11 14:20:38 +05:30

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