nhance/app/Models/ClientDepositModel.php

30 lines
510 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class ClientDepositModel extends Model
{
protected $table = 'cash_deposit';
protected $primaryKey = 'id';
protected $allowedFields = [
'id',
'client_id',
'insurer_id',
'transaction_type',
'amount',
'sub_type',
'is_active',
"created_by",
"updated_by",
"created_at",
"updated_at",
"description",
"balance",
];
}