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

9 lines
342 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class JobcardProductModel extends Model
{
protected $table = 'job_card_product';
protected $primaryKey = 'job_card_product_id';
protected $allowedFields = ['job_card_product_id','job_card_id' ,'name', 'product_id', 'qty', 'tax', 'amount', 'status', 'issued_qty', 'is_active'];
}