15 lines
306 B
PHP
15 lines
306 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ServiceGroupModel extends Model
|
|
{
|
|
protected $table = 'service_group';
|
|
protected $primaryKey = 'service_group_id';
|
|
|
|
protected $allowedFields = ['business_id','branch_id','group_name', 'is_active' ,'created_by','updated_by'];
|
|
|
|
|
|
|
|
|
|
} |