the_mechanic/app/Models/JobcardCustomComplaintModel.php
2024-09-25 09:12:05 +05:30

9 lines
347 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class JobcardCustomComplaintModel extends Model
{
protected $table = 'job_card_custom_complaint';
protected $primaryKey = 'job_card_cc_id';
protected $allowedFields = ['job_card_cc_id', 'job_card_id','complaint_name', 'labour_cost','product_id', 'qty', 'tax', 'amount','isactive'];
}