32 lines
558 B
PHP
32 lines
558 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class InsurerStatements extends Model
|
|
{
|
|
protected $table = 'insurer_statements';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"insurer_id",
|
|
"branch_id",
|
|
"line_items",
|
|
"file_name",
|
|
"month",
|
|
"created_by",
|
|
"is_active",
|
|
"file_status",
|
|
"reason",
|
|
"invoice_status",
|
|
"invoice_no",
|
|
"invoice_amount",
|
|
"invoice_date",
|
|
"updated_by"
|
|
|
|
];
|
|
|
|
|
|
}
|