nhance/app/Models/AddImgModel.php
2025-12-10 09:55:20 +05:30

22 lines
367 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class AddImgModel extends Model
{
protected $table = 'advertisement_images';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"name",
"created_by",
"updated_by",
"is_active",
"client_id",
];
}
?>