nhance/app/Models/SettingsModel.php
2024-09-13 09:00:09 +05:30

21 lines
365 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class SettingsModel extends Model
{
protected $table = 'settings';
protected $primaryKey = 'id';
protected $allowedFields = [
'mail_host',
'mail_port',
'mail_username',
'mail_password',
'email_token',
'created_by',
'updated_by'
];
}