9 lines
342 B
PHP
Executable File
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'];
|
|
} |