bb_sign/app/Models/ServiceModel.php
2024-06-01 17:23:06 +05:30

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'];
}