15 lines
287 B
PHP
15 lines
287 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ServiceModel extends Model
|
|
{
|
|
protected $table = 'services';
|
|
protected $primaryKey = 'service_id';
|
|
|
|
protected $allowedFields = ['branch_id','service_name', 'notes' ,'is_active' ,'created_by','updated_by'];
|
|
|
|
|
|
|
|
|
|
} |