27 lines
467 B
PHP
27 lines
467 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class InvPaymentDetailsModel extends Model
|
|
{
|
|
protected $table = 'inv_payment_details';
|
|
protected $primaryKey = 'id';
|
|
|
|
// Allowed fields for insert/update
|
|
protected $allowedFields = [
|
|
'id',
|
|
'statement_id',
|
|
'inv_amt',
|
|
'utr_no',
|
|
'tds',
|
|
'gst',
|
|
'received_date',
|
|
'created_by',
|
|
'is_active',
|
|
'updated_by'
|
|
];
|
|
|
|
}
|